From 8329268ff79b342518962c4062fe9b71dbac1d69 Mon Sep 17 00:00:00 2001 From: Tomasz Rybarczyk Date: Sat, 29 Feb 2020 16:42:20 +0100 Subject: [PATCH] Generate CHANGELOG.md --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package.json | 1 + 2 files changed, 27 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..94342ec --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,26 @@ +# Changelog + +## Expose connection pieces (29/02/2020) +* Expose `connect` and `ConnectResult` (@srghma) + +* Remove unused type alias `Database` (@srghma) +--- + +## v2.1.0 (08/06/2017) +- Add `Foreign` instances. +--- + +## v2.0.0 (03/06/2017) +- Remove support for tuples as rows, because they are slow and the error messages are bad. +- Add types for rows with up to 19 fields. +- Test `withTransaction`. +- Use `makeAff` and `liftEff` in favor of importing PureScript modules from FFI modules. +--- + +## v1.0.0 (06/05/2017) +- Clarify that purspgpp is optional. +- Add tests. +--- + +## v0.0.27 (04/05/2017) +- Update for PureScript 0.11. diff --git a/package.json b/package.json index 1c40d47..f1fe18a 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "pg": "^6.1.2" }, "devDependencies": { + "github-release-notes": "^0.17.1", "paluh-litps": "^0.1.4", "pulp": "^13.0.0" },