diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bcf8e8..f60c9f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: include: - build: pinned os: ubuntu-18.04 - rust: 1.36.0 + rust: 1.39.0 - build: stable os: ubuntu-18.04 rust: stable diff --git a/CHANGELOG.md b/CHANGELOG.md index 17c3d26..5016e88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -# 7.1.0 (2020-03-01) +## 7.1.1 (2020-06-09) + +- Update dependencies + +## 7.1.0 (2020-03-01) - Add `into_static` to `DecodingKey` for easier re-use diff --git a/Cargo.toml b/Cargo.toml index 3888eb3..33e76ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonwebtoken" -version = "7.1.0" +version = "7.1.1" authors = ["Vincent Prouillet "] license = "MIT" readme = "README.md" @@ -16,7 +16,7 @@ serde = {version = "1.0", features = ["derive"] } ring = { version = "0.16.5", features = ["std"] } base64 = "0.12" # For PEM decoding -pem = "0.7" +pem = "0.8" simple_asn1 = "0.4" [dev-dependencies] diff --git a/README.md b/README.md index f6f6e6f..0d388e5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ jsonwebtoken = "7" serde = {version = "1.0", features = ["derive"] } ``` -The minimum required Rust version is 1.36. +The minimum required Rust version is 1.39. ## Algorithms This library currently supports the following: