Skip to content

Commit

Permalink
v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasroussel committed Jul 16, 2021
1 parent b27cc2c commit efa82f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.3.1

- Fix the `pointycastle` dependency, `v3.1.3` is incompatible with flutter web (dart2js)
(https://github.com/jonasroussel/dart_jsonwebtoken/issues/14)

## 2.3.0

- Adding `header` in JWT class (you can now set your custom header)
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dart_jsonwebtoken
description: A dart implementation of the famous javascript library 'jsonwebtoken' (JWT).
version: 2.3.0
version: 2.3.1
repository: https://github.com/jonasroussel/dart_jsonwebtoken
homepage: https://github.com/jonasroussel/dart_jsonwebtoken#readme

Expand All @@ -9,8 +9,8 @@ environment:

dependencies:
crypto: ^3.0.1
pointycastle: ^3.1.1
convert: ^3.0.0
pointycastle: ">=3.0.1 <=3.1.2" # ^3.1.3 is incompatible with flutter web
convert: ^3.0.1
collection: ^1.15.0

dev_dependencies:
Expand Down

0 comments on commit efa82f1

Please sign in to comment.