This commit is contained in:
Vincent Prouillet 2017-11-22 17:25:46 +01:00
parent 7a71501798
commit 7e394c98e1
2 changed files with 10 additions and 3 deletions

View File

@ -1,8 +1,15 @@
# Changelog
## 4.0.0 (2017-11-22)
### Breaking changes
- Make it mandatory to specify the algorithm in `decode`
## 3.0.0 (2017-09-08)
### Breaking change
### Breaking changes
- Remove `validate_signature` from `Validation`, use `decode_header` instead if you don't know the alg used
- Make `typ` optional in header, some providers apparently don't use it

View File

@ -1,6 +1,6 @@
[package]
name = "jsonwebtoken"
version = "3.0.0"
version = "4.0.0"
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
license = "MIT"
readme = "README.md"
@ -15,6 +15,6 @@ serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
ring = { version = "0.12.0", features = ["rsa_signing", "dev_urandom_fallback"] }
base64 = "0.7"
base64 = "0.8"
untrusted = "0.5"
chrono = "0.4"