From 31b31b07a490120d248ed2370def29aed4f773d3 Mon Sep 17 00:00:00 2001 From: Cyril Sobierajewicz Date: Fri, 19 Feb 2021 09:39:13 +0100 Subject: [PATCH 1/4] Update CI to build with the latest version of the compiler --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b78ffa..6b0550f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,6 @@ jobs: - name: Set up a PureScript toolchain uses: purescript-contrib/setup-purescript@main - with: - purescript: "0.14.0-rc5" - name: Cache PureScript dependencies uses: actions/cache@v2 From 94edfdc0ed4620143c3836845eeb25f4433853d5 Mon Sep 17 00:00:00 2001 From: Cyril Sobierajewicz Date: Fri, 19 Feb 2021 09:39:13 +0100 Subject: [PATCH 2/4] Update the bower repository URL to match the URL in the registry --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 52f6a92..9738f6d 100644 --- a/bower.json +++ b/bower.json @@ -12,7 +12,7 @@ ], "repository": { "type": "git", - "url": "git://github.com/purescript-contrib/purescript-argonaut-generic.git" + "url": "https://github.com/purescript-contrib/purescript-argonaut-generic.git" }, "license": "MIT", "dependencies": { From ad3392583f47fb826db602fcffce2bb601e6d7c8 Mon Sep 17 00:00:00 2001 From: Cyril Sobierajewicz Date: Fri, 19 Feb 2021 09:39:14 +0100 Subject: [PATCH 3/4] Upgrade bower dependencies --- bower.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/bower.json b/bower.json index 9738f6d..83bd87e 100644 --- a/bower.json +++ b/bower.json @@ -16,14 +16,15 @@ }, "license": "MIT", "dependencies": { - "purescript-argonaut-core": "main", - "purescript-argonaut-codecs": "main", - "purescript-prelude": "master", - "purescript-record": "master" + "purescript-argonaut-codecs": "^8.0.0", + "purescript-argonaut-core": "^6.0.0", + "purescript-prelude": "^5.0.0", + "purescript-record": "^3.0.0" }, "devDependencies": { - "purescript-assert": "master", - "purescript-console": "master", - "purescript-exceptions": "master" + "purescript-assert": "^5.0.0", + "purescript-console": "^5.0.0", + "purescript-effect": "^3.0.0", + "purescript-exceptions": "^5.0.0" } } From 0ebe3d8ce4a7876f15d30a93bdb5283fed91452e Mon Sep 17 00:00:00 2001 From: Cyril Sobierajewicz Date: Fri, 19 Feb 2021 09:39:14 +0100 Subject: [PATCH 4/4] Update the changelog --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a75283c..be12913 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,17 @@ Notable changes to this project are documented in this file. The format is based ## [Unreleased] -Breaking changes (😱!!!): +Breaking changes: + +New features: + +Bugfixes: + +Other improvements: + +## [v7.0.0](https://github.com/purescript-contrib/purescript-argonaut-generic/releases/tag/v7.0.0) - 2021-02-26 + +Breaking changes: - Added support for PureScript 0.14 and dropped support for all previous versions (#31, #33) - Removed vestigial `EncodeRepFields` class and its remaining instance for `Data.Generic.Rep.Product` (#29) - Renamed `Data.Argonaut.Decode.Generic.Rep` to `Data.Argonaut.Decode.Generic`, `Data.Argonaut.Encode.Generic.Rep` to `Data.Argonaut.Encode.Generic` and `Data.Argonaut.Types.Generic.Rep` to `Data.Argonaut.Types.Generic`. (#33)