From 7f1fec0aad7613e4ea9aba8f101abce61507fe0e Mon Sep 17 00:00:00 2001 From: Cyril Date: Fri, 26 Feb 2021 23:21:44 +0100 Subject: [PATCH] Prepare v10.0.0 release (#81) * Update CI to build with the latest version of the compiler * Update the bower repository URL to match the URL in the registry * Upgrade bower dependencies * Update the changelog * Update bower.json Co-authored-by: Thomas Honeyman --- .github/workflows/ci.yml | 2 -- CHANGELOG.md | 12 +++++++++++- bower.json | 39 ++++++++++++++++++++------------------- 3 files changed, 31 insertions(+), 22 deletions(-) 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 98c822a..36c20b3 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: + +## [v10.0.0](https://github.com/purescript-contrib/purescript-routing/releases/tag/v10.0.0) - 2021-02-26 + +Breaking changes: - Added support for PureScript 0.14 and dropped support for all previous versions (#77, #79) New features: diff --git a/bower.json b/bower.json index 3d07019..2750584 100644 --- a/bower.json +++ b/bower.json @@ -12,7 +12,7 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/slamdata/purescript-routing.git" + "url": "https://github.com/purescript-contrib/purescript-routing.git" }, "ignore": [ "**/.*", @@ -24,25 +24,26 @@ "package.json" ], "dependencies": { - "purescript-web-html": "master", - "purescript-effect": "master", - "purescript-either": "master", - "purescript-lists": "master", - "purescript-maybe": "master", - "purescript-prelude": "master", - "purescript-semirings": "master", - "purescript-tuples": "master", - "purescript-validation": "master", - "purescript-aff": "master", - "purescript-control": "master", - "purescript-console": "master", - "purescript-integers": "master", - "purescript-js-uri": "https://github.com/purescript-contrib/purescript-js-uri.git#main", - "purescript-foldable-traversable": "master" + "purescript-aff": "^6.0.0", + "purescript-console": "^5.0.0", + "purescript-control": "^5.0.0", + "purescript-effect": "^3.0.0", + "purescript-either": "^5.0.0", + "purescript-foldable-traversable": "^5.0.0", + "purescript-integers": "^5.0.0", + "purescript-js-uri": "https://github.com/purescript-contrib/purescript-js-uri.git#2.0.0", + "purescript-lists": "^6.0.0", + "purescript-maybe": "^5.0.0", + "purescript-numbers": "^7.0.0", + "purescript-partial": "^3.0.0", + "purescript-prelude": "^5.0.0", + "purescript-semirings": "^6.0.0", + "purescript-tuples": "^6.0.0", + "purescript-validation": "^5.0.0", + "purescript-web-html": "^3.0.0" }, "devDependencies": { - "purescript-console": "master", - "purescript-assert": "master", - "purescript-record": "master" + "purescript-assert": "^5.0.0", + "purescript-record": "^3.0.0" } }