Skip to content

Commit

Permalink
Merge branch 'release/v0.5.3' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Aug 6, 2023
2 parents a35765e + 5643a1d commit eb5b81e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.2
current_version = 0.5.3

[bumpversion:file:Cargo.toml]

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "scryptenc"
version = "0.5.2"
version = "0.5.3"
authors = ["Shun Sakai <[email protected]>"]
edition = "2021"
rust-version = "1.60.0"
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
scryptenc = "0.5.2"
scryptenc = "0.5.3"
```

### Crate features
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit eb5b81e

Please sign in to comment.