Skip to content

Commit

Permalink
v0.6.3 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
brycx authored Oct 15, 2022
1 parent 033ff5c commit 935646b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
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 = "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 <[email protected]>"]
edition = "2018"
description = "PASETO: Platform-Agnostic Security Tokens (in Rust)"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 935646b

Please sign in to comment.