diff --git a/CHANGELOG.md b/CHANGELOG.md index 5016e88..c157fe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 7.1.2 (2020-06-16) + +- Derive `Hash` for `Header` and `Algorithm` + ## 7.1.1 (2020-06-09) - Update dependencies diff --git a/Cargo.toml b/Cargo.toml index 33e76ce..d7b4d13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonwebtoken" -version = "7.1.1" +version = "7.1.2" authors = ["Vincent Prouillet "] license = "MIT" readme = "README.md" @@ -9,6 +9,7 @@ homepage = "https://github.com/Keats/jsonwebtoken" repository = "https://github.com/Keats/jsonwebtoken" keywords = ["jwt", "web", "api", "token", "jwk"] edition = "2018" +include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] [dependencies] serde_json = "1.0"