diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b78ffa..6b0550f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,6 @@ jobs: - name: Set up a PureScript toolchain uses: purescript-contrib/setup-purescript@main - with: - purescript: "0.14.0-rc5" - name: Cache PureScript dependencies uses: actions/cache@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index d8016d5..04fdd3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,17 @@ Notable changes to this project are documented in this file. The format is based ## [Unreleased] -Breaking changes (😱!!!): +Breaking changes: + +New features: + +Bugfixes: + +Other improvements: + +## [v6.0.0](https://github.com/purescript-contrib/purescript-options/releases/tag/v6.0.0) - 2021-02-26 + +Breaking changes: - Added support for PureScript 0.14 and dropped support for all previous versions (#39 by @jordanmartinez) New features: diff --git a/bower.json b/bower.json index edbb5f5..781db91 100644 --- a/bower.json +++ b/bower.json @@ -8,7 +8,7 @@ "license": "MIT", "repository": { "type": "git", - "url": "git://github.com/purescript-contrib/purescript-options.git" + "url": "https://github.com/purescript-contrib/purescript-options.git" }, "ignore": [ "*", @@ -16,13 +16,15 @@ "!LICENSE" ], "dependencies": { - "purescript-foreign": "master", - "purescript-foreign-object": "master", - "purescript-tuples": "master", - "purescript-maybe": "master", - "purescript-contravariant": "master" + "purescript-contravariant": "^5.0.0", + "purescript-foreign": "^6.0.0", + "purescript-foreign-object": "^3.0.0", + "purescript-maybe": "^5.0.0", + "purescript-tuples": "^6.0.0" }, "devDependencies": { - "purescript-console": "master" + "purescript-assert": "^5.0.0", + "purescript-console": "^5.0.0", + "purescript-effect": "^3.0.0" } }