Skip to content

Prepare v13.0.0 release (1st PS 0.15.0-compatible release) #44

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 27, 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 @@ -39,8 +39,8 @@ jobs:
- name: Build tests
run: spago -x spago-test.dhall build --no-install --purs-args '--censor-lib --strict'

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

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

## [v13.0.0](https://github.com/purescript-contrib/purescript-arraybuffer/releases/tag/v13.0.0) - 2022-04-27

Breaking Changes:
- Migrate FFI to ES modules (#41 by @JordanMartinez)
- Replaced polymorphic proxies with monomorphic `Proxy` (#41 by @JordanMartinez)
Expand Down
26 changes: 13 additions & 13 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@
"output"
],
"dependencies": {
"purescript-arraybuffer-types": "main",
"purescript-arrays": "master",
"purescript-effect": "master",
"purescript-float32": "main",
"purescript-functions": "master",
"purescript-gen": "master",
"purescript-maybe": "master",
"purescript-nullable": "main",
"purescript-prelude": "master",
"purescript-tailrec": "master",
"purescript-uint": "main",
"purescript-unfoldable": "master"
"purescript-arraybuffer-types": "^3.0.2",
"purescript-arrays": "^7.0.0",
"purescript-effect": "^4.0.0",
"purescript-float32": "^2.0.0",
"purescript-functions": "^6.0.0",
"purescript-gen": "^4.0.0",
"purescript-maybe": "^6.0.0",
"purescript-nullable": "^6.0.0",
"purescript-prelude": "^6.0.0",
"purescript-tailrec": "^6.0.0",
"purescript-uint": "^7.0.0",
"purescript-unfoldable": "^6.0.0"
},
"devDependencies": {
"purescript-quickcheck-laws": "main"
"purescript-quickcheck-laws": "^7.0.0"
}
}