diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c330223..4e4a0fe 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.2 +current_version = 0.5.3 [bumpversion:file:Cargo.toml] diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 708c6de..d6fbe33 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -16,7 +16,7 @@ project adheres to https://semver.org/[Semantic Versioning]. toc::[] -== {compare-url}/v0.5.2\...HEAD[Unreleased] +== {compare-url}/v0.5.2\...v0.5.3[0.5.3] - 2023-08-06 === Changed diff --git a/Cargo.toml b/Cargo.toml index 8fbed50..8ada7c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "scryptenc" -version = "0.5.2" +version = "0.5.3" authors = ["Shun Sakai "] edition = "2021" rust-version = "1.60.0" @@ -30,18 +30,18 @@ exclude = [ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aes = "0.8.2" +aes = "0.8.3" ctr = "0.9.2" hmac = "0.12.1" rand = { version = "0.8.5", default-features = false, features = ["getrandom"] } rand_chacha = { version = "0.3.1", default-features = false } scrypt = { version = "0.11.0", default-features = false } -sha2 = { version = "0.10.6", default-features = false } +sha2 = { version = "0.10.7", default-features = false } [dev-dependencies] -anyhow = "1.0.66" -clap = { version = "3.2.23", features = ["derive"] } -dialoguer = { version = "0.10.2", default-features = false, features = ["password"] } +anyhow = "1.0.72" +clap = { version = "3.2.25", features = ["derive"] } +dialoguer = { version = "0.10.4", default-features = false, features = ["password"] } [features] default = ["std"] diff --git a/README.md b/README.md index e77ac8b..758766f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -scryptenc = "0.5.2" +scryptenc = "0.5.3" ``` ### Crate features diff --git a/src/lib.rs b/src/lib.rs index 066834d..9ef151b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -52,7 +52,7 @@ //! //! [specification-url]: https://github.com/Tarsnap/scrypt/blob/d7a543fb19dca17688e34947aee4558a94200877/FORMAT -#![doc(html_root_url = "https://docs.rs/scryptenc/0.5.2/")] +#![doc(html_root_url = "https://docs.rs/scryptenc/0.5.3/")] #![no_std] #![cfg_attr(doc_cfg, feature(doc_auto_cfg, doc_cfg))] // Lint levels of rustc.