Skip to content

Commit

Permalink
Prepare for v0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed May 3, 2022
1 parent 76ea86c commit 5d3a3fe
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 13 deletions.
51 changes: 40 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,56 @@
# CHANGELOG
# Changelog

## v0.3.0
## [0.4.0] - 2022-05-03

### Added

- Add `Error` associated type to `Signer` traits.

### Changed

* Add docs.rs cfg attributes.
* Use Rust Edition 2021.
- Fix serialize_encode_and_sign to use references for arguments.

Remove `unwrap()` calls and use unspecified Error.

- Add documentation

- Update to rsa 0.6.1

### Removed

- Remove private modules

## v0.2.1
## [0.3.0] - 2022-01-02

### Changed

* Update to document all features on doc.rs.
- Add docs.rs cfg attributes.

## v0.2.0
- Use Rust Edition 2021.

## [0.2.1] - 2022-01-01

### Changed

* Major refactor to basic functions for signing and verifying a JWT.
* Allow different crypto implementations which are enabled via cargo features.
- Update to document all features on doc.rs.

## [0.2.0] - 2022-01-01

### Changed

## v0.1.0
- Major refactor to basic functions for signing and verifying a JWT.

- Allow different crypto implementations which are enabled via cargo features.

## [0.1.0] - 2019-11-06

### Added

* Initial implementation.
- Initial implementation.

[Unreleased]: https://github.com/bluk/gen_value/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/bluk/min_jwt/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/bluk/min_jwt/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/bluk/min_jwt/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/bluk/min_jwt/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/bluk/min_jwt/releases/tag/v0.1.0
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.4.0-alpha.1"
version = "0.4.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.2.0", features = [ "p256", "serde", "serde_json"] }
min_jwt = { version = "0.4.0", features = [ "p256", "serde", "serde_json"] }
p256 = { version = "0.10.0", features = [ "ecdsa", "jwk", "pem"] }
```

Expand Down

0 comments on commit 5d3a3fe

Please sign in to comment.