From 2d44d9f9d0d6a416a4103fba2fb39e5160f80e36 Mon Sep 17 00:00:00 2001 From: JordanMartinez Date: Wed, 27 Apr 2022 17:58:13 -0500 Subject: [PATCH] Prepare v7.0.0 release (1st PS 0.15.0-compatible release) (#210) * Update the bower dependencies * Uncomment spago tests * Update the changelog --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 10 ++++++++++ bower.json | 38 +++++++++++++++++++------------------- 3 files changed, 31 insertions(+), 21 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 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) 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" } }