Skip to content

Commit

Permalink
Prepare v6.0.0 release (1st PS 0.15.0-compatible release) (#150)
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 bower.json

* Fix test due to math import

Co-authored-by: Thomas Honeyman <[email protected]>
  • Loading branch information
JordanMartinez and thomashoneyman authored Apr 27, 2022
1 parent d3b01d3 commit b3926f8
Show file tree
Hide file tree
Showing 4 changed files with 28 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-foldable-traversable/releases/tag/v6.0.0) - 2022-04-27

Breaking changes:
- Migrate FFI to ES modules (#146 by @kl0tl and @JordanMartinez)
- Drop deprecated `foldMap1Default` (#147 by @JordanMartinez)
Expand Down
31 changes: 15 additions & 16 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,22 @@
"package.json"
],
"dependencies": {
"purescript-bifunctors": "master",
"purescript-const": "master",
"purescript-control": "master",
"purescript-either": "master",
"purescript-functors": "master",
"purescript-identity": "master",
"purescript-maybe": "master",
"purescript-newtype": "master",
"purescript-orders": "master",
"purescript-prelude": "master",
"purescript-tuples": "master"
"purescript-bifunctors": "^6.0.0",
"purescript-const": "^6.0.0",
"purescript-control": "^6.0.0",
"purescript-either": "^6.0.0",
"purescript-functors": "^5.0.0",
"purescript-identity": "^6.0.0",
"purescript-maybe": "^6.0.0",
"purescript-newtype": "^5.0.0",
"purescript-orders": "^6.0.0",
"purescript-prelude": "^6.0.0",
"purescript-tuples": "^7.0.0"
},
"devDependencies": {
"purescript-assert": "master",
"purescript-console": "master",
"purescript-integers": "master",
"purescript-math": "master",
"purescript-unsafe-coerce": "master"
"purescript-assert": "^6.0.0",
"purescript-console": "^6.0.0",
"purescript-integers": "^6.0.0",
"purescript-unsafe-coerce": "^6.0.0"
}
}
2 changes: 1 addition & 1 deletion test/Main.purs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import Data.Int (toNumber, pow)
import Data.Maybe (Maybe(..))
import Data.Monoid.Additive (Additive(..))
import Data.Newtype (unwrap)
import Data.Number (abs)
import Data.Semigroup.Foldable (class Foldable1, foldr1, foldl1, foldr1Default, foldl1Default)
import Data.Semigroup.Foldable as Foldable1
import Data.Traversable (class Traversable, sequenceDefault, traverse, sequence, traverseDefault)
import Data.TraversableWithIndex (class TraversableWithIndex, traverseWithIndex)
import Effect (Effect, foreachE)
import Effect.Console (log)
import Math (abs)
import Test.Assert (assert, assert')
import Unsafe.Coerce (unsafeCoerce)

Expand Down

0 comments on commit b3926f8

Please sign in to comment.