Skip to content

Commit

Permalink
Prepare v6.0.0 release (1st PS 0.15.0-compatible release) (#143)
Browse files Browse the repository at this point in the history
* Update the bower dependencies

* Update Node to 14 in CI

* Update the changelog

* Update List.purs

Co-authored-by: Thomas Honeyman <[email protected]>
  • Loading branch information
JordanMartinez and thomashoneyman authored Apr 27, 2022
1 parent 5a182f7 commit be72ab5
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

## [v6.0.0](https://github.com/purescript/purescript-transformers/releases/tag/v6.0.0) - 2022-04-27

Breaking changes:
- Update project and deps to PureScript v0.15.0 (#142 by @JordanMartinez)
- Drop deprecated `MonadZero` instance (#141 by @JordanMartinez)
Expand Down
32 changes: 16 additions & 16 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@
"package.json"
],
"dependencies": {
"purescript-control": "master",
"purescript-distributive": "master",
"purescript-effect": "master",
"purescript-either": "master",
"purescript-exceptions": "master",
"purescript-foldable-traversable": "master",
"purescript-identity": "master",
"purescript-lazy": "master",
"purescript-maybe": "master",
"purescript-newtype": "master",
"purescript-prelude": "master",
"purescript-tailrec": "master",
"purescript-tuples": "master",
"purescript-unfoldable": "master"
"purescript-control": "^6.0.0",
"purescript-distributive": "^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-identity": "^6.0.0",
"purescript-lazy": "^6.0.0",
"purescript-maybe": "^6.0.0",
"purescript-newtype": "^5.0.0",
"purescript-prelude": "^6.0.0",
"purescript-tailrec": "^6.0.0",
"purescript-tuples": "^7.0.0",
"purescript-unfoldable": "^6.0.0"
},
"devDependencies": {
"purescript-arrays": "master",
"purescript-console": "master"
"purescript-arrays": "^7.0.0",
"purescript-console": "^6.0.0"
}
}
2 changes: 1 addition & 1 deletion test/Example/List.purs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Example.List where
import Prelude

import Control.Monad.List.Trans (ListT, runListTRec, iterate, takeWhile)
import Control.MonadZero (guard)
import Control.Alternative (guard)
import Data.Array as A
import Effect (Effect)
import Effect.Class (liftEffect)
Expand Down

0 comments on commit be72ab5

Please sign in to comment.