Skip to content

Commit

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

## [0.8.0] - 2023-03-30

### Changed

- Update `p256` dependency to version `0.13.0`.

## [0.7.0] - 2023-03-02

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

- Initial implementation.

[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.8.0...HEAD
[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
[0.5.0]: https://github.com/bluk/min_jwt/compare/v0.4.0...v0.5.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.7.0"
version = "0.8.0"
license = "MIT OR Apache-2.0"
description = "Minimal JSON Web Token library"
repository = "https://github.com/bluk/min_jwt"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ crate, depend on this crate and the relevant dependent crate in your

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

Be sure to enable the relevant features as well.
Expand Down

0 comments on commit 4a1c79f

Please sign in to comment.