From 23ad7f2c1fd1f161252c6404bf27b048f6093242 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 17:50:14 -0500 Subject: [PATCH 1/3] Update the bower dependencies --- bower.json | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/bower.json b/bower.json index f40b6ad..9ae4e1e 100644 --- a/bower.json +++ b/bower.json @@ -17,26 +17,26 @@ "package.json" ], "dependencies": { - "purescript-arrays": "master", - "purescript-bifunctors": "master", - "purescript-control": "master", - "purescript-datetime": "master", - "purescript-effect": "master", - "purescript-either": "master", - "purescript-exceptions": "master", - "purescript-foldable-traversable": "master", - "purescript-functions": "master", - "purescript-maybe": "master", - "purescript-newtype": "master", - "purescript-parallel": "master", - "purescript-prelude": "master", - "purescript-refs": "master", - "purescript-tailrec": "master", - "purescript-transformers": "master", - "purescript-unsafe-coerce": "master" + "purescript-arrays": "^7.0.0", + "purescript-bifunctors": "^6.0.0", + "purescript-control": "^6.0.0", + "purescript-datetime": "^6.0.0", + "purescript-effect": "^4.0.0", + "purescript-either": "^6.0.0", + "purescript-exceptions": "^6.0.0", + "purescript-foldable-traversable": "^6.0.0", + "purescript-functions": "^6.0.0", + "purescript-maybe": "^6.0.0", + "purescript-newtype": "^5.0.0", + "purescript-parallel": "^6.0.0", + "purescript-prelude": "^6.0.0", + "purescript-refs": "^6.0.0", + "purescript-tailrec": "^6.0.0", + "purescript-transformers": "^6.0.0", + "purescript-unsafe-coerce": "^6.0.0" }, "devDependencies": { - "purescript-minibench": "master", - "purescript-assert": "master" + "purescript-minibench": "^4.0.0", + "purescript-assert": "^6.0.0" } } From cfdd5bf7830e324a5f26b013816a9994e68eee83 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 17:50:14 -0500 Subject: [PATCH 2/3] Uncomment spago tests --- .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 a37ef4a..266172a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,8 +50,8 @@ jobs: - name: Build the project run: npm run build -# - name: Run tests -# run: npm run test + - name: Run tests + run: npm run test - name: Check formatting run: purs-tidy check src test From 24e4cce9661b306d0fceb585e916db8f38eab641 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 17:50:14 -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 d5c107f..a770fed 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-contrib/purescript-aff/releases/tag/v7.0.0) - 2022-04-27 + Breaking changes: - Restrict the signature of `launchAff_` to only work on `Aff Unit` (#203 by @i-am-the-slime) - Migrate FFI to ES modules (#209 by @JordanMartinez)