Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lawliet89 committed Mar 29, 2023
1 parent d0d0eda commit a6d162a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## 0.6.0-beta1 (2021-02-24)
## 0.6.0

### Breaking Changes

- Fix build errors and bump MSRV by @lawliet89 in https://github.com/lawliet89/biscuit/pull/308
- [`jws::RegisteredHeader` field `web_key`](https://lawliet89.github.io/biscuit/biscuit/jws/struct.RegisteredHeader.html#structfield.web_key)
is now of type `Option<jwk::JWK<Empty>>` instead of `Option<String>`. If you were not using JWKs,
continue setting the value to `None` will not breaking. If you were previously serializing your
Expand All @@ -14,6 +15,8 @@

- Add support for Flattened JWS [[#190]](https://github.com/lawliet89/biscuit/pull/190)
- Added more documentation for using OpenSSL to manipulate keys [[#179]](https://github.com/lawliet89/biscuit/pull/179)
- Derive Clone for `JWKSet` by @lawliet89 in https://github.com/lawliet89/biscuit/pull/204
- Lints fixes

## 0.5.0 (2020-11-17)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "biscuit"
version = "0.6.0-beta1"
version = "0.6.0"
edition = "2021"
authors = ["Yong Wen Chua <me@yongwen.xyz>", "Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This was based off [`Keats/rust-jwt`](https://github.com/Keats/rust-jwt).
Add the following to Cargo.toml:

```toml
biscuit = "0.6.0-beta1"
biscuit = "0.6.0"
```

To use the latest `master` branch, for example:
Expand Down
2 changes: 1 addition & 1 deletion doc/supported.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ A list can be found
|----------------|---------|--------------------|
| Compact || |
| General JSON || |
| Flattened JSON || As of v0.6.0-beta1 |
| Flattened JSON || As of v0.6.0 |

## JSON Web Encryption (JWE)

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//! Add the following to Cargo.toml:
//!
//! ```toml
//! biscuit = "0.6.0-beta1"
//! biscuit = "0.6.0"
//! ```
//!
//! To use the latest `master` branch, for example:
Expand Down

0 comments on commit a6d162a

Please sign in to comment.