Skip to content

Commit

Permalink
Prepare for v0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed May 2, 2023
1 parent 1bd673d commit 010ee3d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.9.0] - 2023-05-02

### Changed

- Update `rsa` dependency to version `0.9.0`.
- Use Rust `1.65.0` as minimum supported version.

## [0.8.0] - 2023-03-30

### Changed
Expand Down Expand Up @@ -92,7 +99,8 @@

- Initial implementation.

[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.8.0...HEAD
[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.9.0...HEAD
[0.9.0]: https://github.com/bluk/min_jwt/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/bluk/min_jwt/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/bluk/min_jwt/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/bluk/min_jwt/compare/v0.5.0...v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "min_jwt"
version = "0.8.0"
version = "0.9.0"
license = "MIT OR Apache-2.0"
description = "Minimal JSON Web Token library"
repository = "https://github.com/bluk/min_jwt"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ crate, depend on this crate and the relevant dependent crate in your

```toml
[dependencies]
min_jwt = { version = "0.8.0", features = [ "p256", "serde", "serde_json"] }
min_jwt = { version = "0.9.0", features = [ "p256", "serde", "serde_json"] }
p256 = { version = "0.13.0", features = [ "ecdsa", "jwk", "pem"] }
```

Expand Down

0 comments on commit 010ee3d

Please sign in to comment.