Skip to content

Prepare v9.0.0 release (1st PS 0.15.0-compatible release) #195

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

Merged
merged 3 commits into from
Apr 28, 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 @@ -36,8 +36,8 @@ jobs:
- name: Install dev dependencies
run: spago -x spago-dev.dhall install

# - name: Run tests
# run: spago -x spago-dev.dhall test --no-install
- name: Run tests
run: spago -x spago-dev.dhall test --no-install

- name: Check formatting
run: purs-tidy check src test bench
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:

## [v9.0.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v9.0.0) - 2022-04-27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We may need to remember to update this date if this release goes out later than today.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, good point.


Breaking changes:
- Update project and deps to PureScript v0.15.0 (#160 by @JordanMartinez)
- Drop deprecated `MonadZero` instance (#160 by @JordanMartinez)
Expand Down
44 changes: 22 additions & 22 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,29 +14,29 @@
"output"
],
"dependencies": {
"purescript-arrays": "master",
"purescript-control": "master",
"purescript-either": "master",
"purescript-foldable-traversable": "master",
"purescript-identity": "master",
"purescript-integers": "master",
"purescript-lists": "master",
"purescript-maybe": "master",
"purescript-newtype": "master",
"purescript-numbers": "master",
"purescript-nullable": "main",
"purescript-prelude": "master",
"purescript-strings": "master",
"purescript-tailrec": "master",
"purescript-transformers": "master",
"purescript-tuples": "master",
"purescript-unfoldable": "master",
"purescript-unicode": "main",
"purescript-unsafe-coerce": "master"
"purescript-arrays": "^7.0.0",
"purescript-control": "^6.0.0",
"purescript-either": "^6.0.0",
"purescript-foldable-traversable": "^6.0.0",
"purescript-identity": "^6.0.0",
"purescript-integers": "^6.0.0",
"purescript-lists": "^7.0.0",
"purescript-maybe": "^6.0.0",
"purescript-newtype": "^5.0.0",
"purescript-numbers": "^9.0.0",
"purescript-nullable": "^6.0.0",
"purescript-prelude": "^6.0.0",
"purescript-strings": "^6.0.0",
"purescript-tailrec": "^6.0.0",
"purescript-transformers": "^6.0.0",
"purescript-tuples": "^7.0.0",
"purescript-unfoldable": "^6.0.0",
"purescript-unicode": "^6.0.0",
"purescript-unsafe-coerce": "^6.0.0"
},
"devDependencies": {
"purescript-assert": "master",
"purescript-effect": "master",
"purescript-node-process": "master"
"purescript-assert": "^6.0.0",
"purescript-effect": "^4.0.0",
"purescript-node-process": "^9.0.0"
}
}