diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b6364c..dd1057b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ -### TBD +### 0.6.8 -__Date:__ TBD +__Date:__ December 12, 2023. - Bump MSRV to `1.70`. +- Add `Claims::set_expires_in()` ([#107](https://github.com/brycx/pasetors/pull/107), credits: @franklx). ### 0.6.7 diff --git a/Cargo.toml b/Cargo.toml index b64e5d1..a5c8819 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pasetors" -version = "0.6.7" # Update html_root_url in lib.rs along with this. +version = "0.6.8" # 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/src/lib.rs b/src/lib.rs index eb29a71..16ae633 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.7")] +#![doc(html_root_url = "https://docs.rs/pasetors/0.6.8")] #![cfg_attr(docsrs, feature(doc_cfg))] #[macro_use]