From 7d6c09184e4b93dbd21dfe90eb2fdf679c29aabd Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 16:26:12 -0500 Subject: [PATCH 1/3] Update the bower dependencies --- bower.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bower.json b/bower.json index 00c0a9e..c84d014 100644 --- a/bower.json +++ b/bower.json @@ -20,17 +20,17 @@ "package.json" ], "dependencies": { - "purescript-either": "master", - "purescript-functions": "master", - "purescript-identity": "master", - "purescript-integers": "master", - "purescript-lists": "master", - "purescript-maybe": "master", - "purescript-prelude": "master", - "purescript-strings": "master", - "purescript-transformers": "master" + "purescript-either": "^6.0.0", + "purescript-functions": "^6.0.0", + "purescript-identity": "^6.0.0", + "purescript-integers": "^6.0.0", + "purescript-lists": "^7.0.0", + "purescript-maybe": "^6.0.0", + "purescript-prelude": "^6.0.0", + "purescript-strings": "^6.0.0", + "purescript-transformers": "^6.0.0" }, "devDependencies": { - "purescript-console": "master" + "purescript-console": "^6.0.0" } } From 26fbdfdf7e635c0d80048d8c2bb35f74f7248955 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 16:26:12 -0500 Subject: [PATCH 2/3] Update Node to 14 in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6ebf3a..c69237a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,9 @@ jobs: with: purescript: "unstable" - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: "12" + node-version: "14.x" - name: Install dependencies run: | From 275187d64cf4e5fd303207b7ca671b2398a27e05 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 16:26:12 -0500 Subject: [PATCH 3/3] Update the changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ea7e14..40eec6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ Notable changes to this project are documented in this file. The format is based ## [Unreleased] +Breaking changes: + +New features: + +Bugfixes: + +Other improvements: + +## [v7.0.0](https://github.com/purescript/purescript-foreign/releases/tag/v7.0.0) - 2022-04-27 + Breaking changes: - Migrate FFI to ES modules (#86 by @kl0tl and @JordanMartinez)