Skip to content

Commit

Permalink
Prepare v12.0.0 release (#162)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
kl0tl committed Feb 26, 2021
1 parent fdff314 commit 5be197e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 18 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -15,8 +15,6 @@ jobs:

- name: Set up PureScript toolchain
uses: purescript-contrib/setup-purescript@main
with:
purescript: "0.14.0-rc5"

- name: Cache PureScript dependencies
uses: actions/cache@v2
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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:

## [v12.0.0](https://github.com/purescript-contrib/purescript-affjax/releases/tag/v12.0.0) - 2021-02-26

Breaking changes:
- Added support for PureScript 0.14 and dropped support for all previous versions (#158)
- `XHRError Exn.Error` was removed and split to `TimeoutError`, `RequestFailedError`, and `XHROtherError Exn.Error` (#155, @srghma)

Expand Down
31 changes: 16 additions & 15 deletions bower.json
Expand Up @@ -9,7 +9,7 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/slamdata/purescript-affjax.git"
"url": "https://github.com/purescript-contrib/purescript-affjax.git"
},
"ignore": [
"**/.*",
Expand All @@ -23,21 +23,22 @@
"package.json"
],
"dependencies": {
"purescript-aff": "main",
"purescript-argonaut-core": "main",
"purescript-arraybuffer-types": "main",
"purescript-web-xhr": "master",
"purescript-foreign": "master",
"purescript-form-urlencoded": "main",
"purescript-http-methods": "main",
"purescript-integers": "master",
"purescript-math": "master",
"purescript-media-types": "main",
"purescript-nullable": "main",
"purescript-refs": "master",
"purescript-unsafe-coerce": "master"
"purescript-aff": "^6.0.0",
"purescript-argonaut-core": "^6.0.0",
"purescript-arraybuffer-types": "^3.0.0",
"purescript-foreign": "^6.0.0",
"purescript-form-urlencoded": "^6.0.0",
"purescript-http-methods": "^5.0.0",
"purescript-integers": "^5.0.0",
"purescript-math": "^3.0.0",
"purescript-media-types": "^5.0.0",
"purescript-nullable": "^5.0.0",
"purescript-refs": "^5.0.0",
"purescript-unsafe-coerce": "^5.0.0",
"purescript-web-xhr": "^4.0.0"
},
"devDependencies": {
"purescript-console": "master"
"purescript-console": "^5.0.0",
"purescript-effect": "^3.0.0"
}
}

0 comments on commit 5be197e

Please sign in to comment.