Skip to content

Commit 3aeb6d8

Browse files
MarkAtwoodclaude
andcommitted
chore: bump crate versions for 0.1.1 / 1.16.2 / 1.1.1 release
Add READMEs and readme field to all crates. wolfcrypt-rs also drops the broken builder symlink; wolfcrypt-wrapper fixes the ctx_len type in dilithium verify ctx functions. Version scheme: 0.1.0 → 0.1.1 (wolfssl-src, wolfcrypt-sys, wolfcrypt-rs, wolfcrypt, wolfcrypt-ring-testing, wolfcrypt-conformance, wolfcrypt-tls) 1.16.1 → 1.16.2 (wolfcrypt-ring-compat) 1.1.0 → 1.1.1 (wolfcrypt-wrapper) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d26a261 commit 3aeb6d8

9 files changed

Lines changed: 17 additions & 17 deletions

File tree

wolfcrypt-conformance/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfcrypt-conformance"
33
authors = ["WolfSSL Inc"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2021"
66
license = "MIT"
77
description = "Cross-validation and trait conformance tests for wolfcrypt"
@@ -21,11 +21,11 @@ path = "src/lib.rs"
2121
# dev-dependencies) solely so build.rs can read DEP_WOLFSSL_CFGS metadata.
2222
# Cargo only exposes `links` metadata to build scripts of direct dependents,
2323
# and dev-dependencies don't qualify.
24-
wolfcrypt-rs = { version = "0.1.0", path = "../wolfcrypt-rs" }
24+
wolfcrypt-rs = { version = "0.1.1", path = "../wolfcrypt-rs" }
2525

2626
[dev-dependencies]
2727
# === Wolf side ===
28-
wolfcrypt = { version = "0.1.0", path = "../wolfcrypt", features = [
28+
wolfcrypt = { version = "0.1.1", path = "../wolfcrypt", features = [
2929
"digest", "hmac", "cmac", "hkdf", "pbkdf2", "aead", "cipher",
3030
"poly1305", "signature", "ecdsa", "ed25519", "ed448", "rsa",
3131
"mldsa", "mlkem", "keywrap", "dh", "des3", "ecdh", "rand",

wolfcrypt-ring-compat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfcrypt-ring-compat"
33
authors = ["WolfSSL Inc", "AWS-LibCrypto"]
4-
version = "1.16.1"
4+
version = "1.16.2"
55
links = "wolfcrypt_ring_compat_sys"
66
edition = "2021"
77
rust-version = "1.71.0"
@@ -56,7 +56,7 @@ fips = ["wolfcrypt-rs", "wolfcrypt-rs/fips"]
5656
[dependencies]
5757
spin.workspace = true
5858
untrusted = { workspace = true, optional = true }
59-
wolfcrypt-rs = { version = "0.1.0", path = "../wolfcrypt-rs", default-features = false, optional = true }
59+
wolfcrypt-rs = { version = "0.1.1", path = "../wolfcrypt-rs", default-features = false, optional = true }
6060
zeroize.workspace = true
6161

6262
[dev-dependencies]

wolfcrypt-ring-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfcrypt-ring-testing"
33
authors = ["WolfSSL Inc"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2021"
66
license = "MIT"
77
description = "Tests and benchmarks for wolfcrypt-ring-compat"

wolfcrypt-rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfcrypt-rs"
33
description = "Low-level FFI bindings for wolfSSL/wolfCrypt cryptographic library."
4-
version = "0.1.0"
4+
version = "0.1.1"
55
authors = ["WolfSSL Inc"]
66
edition = "2021"
77
license = "MIT"
@@ -15,7 +15,7 @@ build = "build.rs"
1515
links = "wolfssl"
1616

1717
[dependencies]
18-
wolfcrypt-sys = { version = "0.1.0", path = "../wolfcrypt-sys", default-features = false, features = ["vendored"] }
18+
wolfcrypt-sys = { version = "0.1.1", path = "../wolfcrypt-sys", default-features = false, features = ["vendored"] }
1919

2020
[features]
2121
default = []

wolfcrypt-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfcrypt-sys"
33
authors = ["WolfSSL Inc"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2021"
66
description = "Auto-generated Rust FFI bindings to wolfSSL via bindgen"
77
license = "MIT"
@@ -21,4 +21,4 @@ riscv-bare-metal = ["wolfssl-src/riscv-bare-metal"]
2121
[build-dependencies]
2222
bindgen = "0.72.0"
2323
pkg-config = "0.3"
24-
wolfssl-src = { version = "0.1.0", path = "../wolfssl-src" }
24+
wolfssl-src = { version = "0.1.1", path = "../wolfssl-src" }

wolfcrypt-tls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfcrypt-tls"
33
authors = ["WolfSSL Inc"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2021"
66
license = "MIT"
77
keywords = ["wolfcrypt", "wolfssl", "tls", "fips", "cryptography"]
@@ -26,7 +26,7 @@ vendored = ["wolfcrypt-sys/vendored"]
2626
fips = ["wolfcrypt-sys/fips"]
2727

2828
[dependencies]
29-
wolfcrypt-sys = { version = "0.1.0", path = "../wolfcrypt-sys" }
29+
wolfcrypt-sys = { version = "0.1.1", path = "../wolfcrypt-sys" }
3030
zeroize = { workspace = true }
3131

3232
[dev-dependencies]

wolfcrypt-wrapper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfcrypt-wrapper"
33
authors = ["WolfSSL Inc"]
4-
version = "1.1.0"
4+
version = "1.1.1"
55
edition = "2021"
66
description = "Rust wrapper for wolfssl C library cryptographic functionality"
77
license = "MIT"
@@ -18,7 +18,7 @@ std = []
1818
fips = ["wolfcrypt-sys/fips"]
1919

2020
[dependencies]
21-
wolfcrypt-sys = { version = "0.1.0", path = "../wolfcrypt-sys", default-features = false, features = ["vendored"] }
21+
wolfcrypt-sys = { version = "0.1.1", path = "../wolfcrypt-sys", default-features = false, features = ["vendored"] }
2222

2323
[build-dependencies]
2424
bindgen = { workspace = true }

wolfcrypt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "wolfcrypt"
77
authors = ["WolfSSL Inc"]
8-
version = "0.1.0"
8+
version = "0.1.1"
99
edition = "2021"
1010
rust-version = "1.71.0"
1111
license = "MIT"
@@ -50,7 +50,7 @@ fips = ["wolfcrypt-rs/fips"]
5050
riscv-bare-metal = ["wolfcrypt-rs/riscv-bare-metal"]
5151

5252
[dependencies]
53-
wolfcrypt-rs = { version = "0.1.0", path = "../wolfcrypt-rs" }
53+
wolfcrypt-rs = { version = "0.1.1", path = "../wolfcrypt-rs" }
5454

5555
# RustCrypto trait crates (renamed to avoid module name collision).
5656
#

wolfssl-src/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wolfssl-src"
33
authors = ["WolfSSL Inc"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2021"
66
description = "Compile wolfSSL from source for use by wolfcrypt-sys"
77
license = "MIT"

0 commit comments

Comments
 (0)