From 973d567afe458fd802cf4f0d9725b6dc35ad9297 Mon Sep 17 00:00:00 2001 From: JordanMartinez Date: Wed, 27 Apr 2022 17:40:59 -0500 Subject: [PATCH] Prepare v8.0.0 release (1st PS 0.15.0-compatible release) (#142) * Update the bower dependencies * Uncomment spago tests * Update the changelog --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 10 +++++++++ bower.json | 46 ++++++++++++++++++++-------------------- 3 files changed, 35 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbf79a2..e721ba4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,8 +33,8 @@ jobs: - name: Build source run: spago build --no-install --purs-args '--censor-lib --strict' -# - name: Run tests -# run: spago test --no-install + - name: Run tests + run: spago test --no-install - name: Check formatting run: purs-tidy check src test examples diff --git a/CHANGELOG.md b/CHANGELOG.md index a1f64f3..9eb19aa 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: + +## [v8.0.0](https://github.com/purescript-contrib/purescript-profunctor-lenses/releases/tag/v8.0.0) - 2022-04-27 + Breaking changes: - Update project and deps to PureScript v0.15.0 (#141 by @JordanMartinez) - Replaced polymorphic proxies with monomorphic `Proxy` (#141 by @JordanMartinez) diff --git a/bower.json b/bower.json index 208c10b..7383740 100644 --- a/bower.json +++ b/bower.json @@ -12,30 +12,30 @@ "url": "https://github.com/purescript-contrib/purescript-profunctor-lenses.git" }, "dependencies": { - "purescript-arrays": "master", - "purescript-bifunctors": "master", - "purescript-const": "master", - "purescript-control": "master", - "purescript-distributive": "master", - "purescript-either": "master", - "purescript-foldable-traversable": "master", - "purescript-foreign-object": "master", - "purescript-functors": "master", - "purescript-identity": "master", - "purescript-lists": "master", - "purescript-maybe": "master", - "purescript-newtype": "master", - "purescript-ordered-collections": "master", - "purescript-partial": "master", - "purescript-prelude": "master", - "purescript-profunctor": "master", - "purescript-record": "master", - "purescript-transformers": "master", - "purescript-tuples": "master" + "purescript-arrays": "^7.0.0", + "purescript-bifunctors": "^6.0.0", + "purescript-const": "^6.0.0", + "purescript-control": "^6.0.0", + "purescript-distributive": "^6.0.0", + "purescript-either": "^6.0.0", + "purescript-foldable-traversable": "^6.0.0", + "purescript-foreign-object": "^4.0.0", + "purescript-functors": "^5.0.0", + "purescript-identity": "^6.0.0", + "purescript-lists": "^7.0.0", + "purescript-maybe": "^6.0.0", + "purescript-newtype": "^5.0.0", + "purescript-ordered-collections": "^3.0.0", + "purescript-partial": "^4.0.0", + "purescript-prelude": "^6.0.0", + "purescript-profunctor": "^6.0.0", + "purescript-record": "^4.0.0", + "purescript-transformers": "^6.0.0", + "purescript-tuples": "^7.0.0" }, "devDependencies": { - "purescript-console": "master", - "purescript-effect": "master", - "purescript-assert": "master" + "purescript-console": "^6.0.0", + "purescript-effect": "^4.0.0", + "purescript-assert": "^6.0.0" } }