Skip to content

Commit

Permalink
Cut pre.1 prereleases (#513)
Browse files Browse the repository at this point in the history
Cuts the following prereleases:

- `argon2` v0.6.0-pre.1
- `balloon-hash` v0.5.0-pre.1
- `bcrypt-pbkdf` v0.11.0-pre.1
- `password-auth` v1.1.0-pre.1
- `pbkdf2` v0.13.0-pre.1
- `scrypt` v0.12.0-pre.1
- `sha-crypt` v0.6.0-pre.1
  • Loading branch information
tarcieri authored Jul 27, 2024
1 parent 88b15a6 commit 52bf909
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion argon2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argon2"
version = "0.6.0-pre.0"
version = "0.6.0-pre.1"
description = """
Pure Rust implementation of the Argon2 password hashing function with support
for the Argon2d, Argon2i, and Argon2id algorithmic variants
Expand Down
2 changes: 1 addition & 1 deletion balloon-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "balloon-hash"
version = "0.5.0-pre.0"
version = "0.5.0-pre.1"
description = "Pure Rust implementation of the Balloon password hashing function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions bcrypt-pbkdf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bcrypt-pbkdf"
version = "0.11.0-pre.0"
version = "0.11.0-pre.1"
description = "bcrypt-pbkdf password-based key derivation function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.72"

[dependencies]
blowfish = { version = "=0.10.0-pre.1", features = ["bcrypt"] }
pbkdf2 = { version = "=0.13.0-pre.0", default-features = false, path = "../pbkdf2" }
pbkdf2 = { version = "=0.13.0-pre.1", default-features = false, path = "../pbkdf2" }
sha2 = { version = "=0.11.0-pre.4", default-features = false }
zeroize = { version = "1", default-features = false, optional = true }

Expand Down
8 changes: 4 additions & 4 deletions password-auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "password-auth"
version = "1.1.0-pre.0"
version = "1.1.0-pre.1"
description = """
Password authentication library with a focus on simplicity and ease-of-use,
including support for Argon2, PBKDF2, and scrypt password hashing algorithms
Expand All @@ -21,9 +21,9 @@ password-hash = { version = "0.6.0-rc.0", features = ["alloc", "rand_core"] }
rand_core = { version = "0.6", features = ["getrandom"] }

# optional dependencies
argon2 = { version = "=0.6.0-pre.0", optional = true, default-features = false, features = ["alloc", "simple"], path = "../argon2" }
pbkdf2 = { version = "=0.13.0-pre.0", optional = true, default-features = false, features = ["simple"], path = "../pbkdf2" }
scrypt = { version = "=0.12.0-pre.0", optional = true, default-features = false, features = ["simple"], path = "../scrypt" }
argon2 = { version = "=0.6.0-pre.1", optional = true, default-features = false, features = ["alloc", "simple"], path = "../argon2" }
pbkdf2 = { version = "=0.13.0-pre.1", optional = true, default-features = false, features = ["simple"], path = "../pbkdf2" }
scrypt = { version = "=0.12.0-pre.1", optional = true, default-features = false, features = ["simple"], path = "../scrypt" }

[features]
default = ["argon2", "std"]
Expand Down
2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbkdf2"
version = "0.13.0-pre.0"
version = "0.13.0-pre.1"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
Expand Down
4 changes: 2 additions & 2 deletions scrypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrypt"
version = "0.12.0-pre.0"
version = "0.12.0-pre.1"
description = "Scrypt password-based key derivation function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.72"

[dependencies]
pbkdf2 = { version = "=0.13.0-pre.0", path = "../pbkdf2" }
pbkdf2 = { version = "=0.13.0-pre.1", path = "../pbkdf2" }
salsa20 = { version = "=0.11.0-pre.1", default-features = false }
sha2 = { version = "=0.11.0-pre.4", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion sha-crypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha-crypt"
version = "0.6.0-pre.0"
version = "0.6.0-pre.1"
description = """
Pure Rust implementation of the SHA-crypt password hash based on SHA-512
as implemented by the POSIX crypt C library
Expand Down

0 comments on commit 52bf909

Please sign in to comment.