diff --git a/CHANGELOG.md b/CHANGELOG.md index 4981c62..98ace74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### 0.6.3 + +__Date:__ October 15, 2022. + +__Changelog:__ +- Add optional `serde` support for keys + PASERK ID, to be de/serialized from/to PASERK strings. Also introducing a new optional feature `serde` (see [#26](https://github.com/brycx/pasetors/issues/26), by [@SanchithHegde](https://github.com/SanchithHegde)) +- Clippy improvements to tests (see [#69](https://github.com/brycx/pasetors/pull/69), by [@SanchithHegde](https://github.com/SanchithHegde)) +- Update `ed25519-compact` to `2.0.2` (see [#72](https://github.com/brycx/pasetors/pull/72)) + ### 0.6.2 __Date:__ September 23, 2022. diff --git a/Cargo.toml b/Cargo.toml index 39c263b..f4bcc99 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pasetors" -version = "0.6.2" # Update html_root_url in lib.rs along with this. +version = "0.6.3" # Update html_root_url in lib.rs along with this. authors = ["brycx "] edition = "2018" description = "PASETO: Platform-Agnostic Security Tokens (in Rust)" diff --git a/README.md b/README.md index 69c1626..2b00692 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ PASETO (Platform-Agnostic SEcurity TOkens) are secure stateless tokens. Read mor This library includes: - [x] Pure-Rust implementation of the Version 4, 3† and 2 protocol -- [x] PASERK support (limited amount of PASERK-types) +- [x] PASERK support (limited amount of PASERK-types) with optional `serde` support as well - [x] `#![no_std]` (with default-features disabled) and `#![forbid(unsafe_code)]` - [x] WASM-friendly (`wasm32-unknown-unknown` using `#![no_std]`) - [x] Fuzzing targets diff --git a/src/lib.rs b/src/lib.rs index 4b56d90..2b18124 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -183,7 +183,7 @@ unused_qualifications, overflowing_literals )] -#![doc(html_root_url = "https://docs.rs/pasetors/0.6.2")] +#![doc(html_root_url = "https://docs.rs/pasetors/0.6.3")] #![cfg_attr(docsrs, feature(doc_cfg))] #[macro_use]