Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v7.0.0 release (1st PS 0.15.0-compatible release) #210

Merged
merged 3 commits into from
Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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:

## [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)
Expand Down
38 changes: 19 additions & 19 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}