diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c55473..4003179 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c160b4..11895ab 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: + +## [v9.0.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v9.0.0) - 2022-04-27 + Breaking changes: - Update project and deps to PureScript v0.15.0 (#160 by @JordanMartinez) - Drop deprecated `MonadZero` instance (#160 by @JordanMartinez) diff --git a/bower.json b/bower.json index cf9f928..99de803 100644 --- a/bower.json +++ b/bower.json @@ -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" } }