Skip to content

Commit 53c9b3f

Browse files
committed
chore: bump patch versions for 0.1.2 / 1.1.2 / 1.16.3 release
1 parent d77ffcb commit 53c9b3f

9 files changed

Lines changed: 19 additions & 17 deletions

File tree

wolfcrypt-conformance/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ repository = "https://github.com/wolfSSL/wolfssl-rs"
1010
readme = "README.md"
1111
keywords = ["wolfcrypt", "wolfssl", "fips", "testing", "cryptography"]
1212
categories = ["cryptography"]
13+
# Test-only crate — not published to crates.io.
14+
publish = false
1315
exclude = ["third_party/**", "vectors/**"]
1416

1517
[features]
@@ -28,7 +30,7 @@ path = "src/lib.rs"
2830
# dev-dependencies) solely so build.rs can read DEP_WOLFSSL_CFGS metadata.
2931
# Cargo only exposes `links` metadata to build scripts of direct dependents,
3032
# and dev-dependencies don't qualify.
31-
wolfcrypt-rs = { version = "0.1.1", path = "../wolfcrypt-rs" }
33+
wolfcrypt-rs = { version = "0.1.2", path = "../wolfcrypt-rs" }
3234

3335
# Hardware backend: optional, activated by the caliptra-hw feature.
3436
# Provides HW_DEVICE_ID, init(), and dispatch-counter accessors used by
@@ -43,11 +45,11 @@ caliptra-emu-periph = { path = "../../caliptra/sw-emulator/lib/periph", optional
4345
# wolfcrypt-sys is already transitively present via wolfcrypt-rs but must be
4446
# declared directly so caliptra_hw_conformance can call wc_Hash_ex,
4547
# wc_HmacInit, wc_AesGcmEncrypt, wc_ecc_sign_hash, etc.
46-
wolfcrypt-sys = { version = "0.1.1", path = "../wolfcrypt-sys" }
48+
wolfcrypt-sys = { version = "0.1.2", path = "../wolfcrypt-sys" }
4749

4850
[dev-dependencies]
4951
# === Wolf side ===
50-
wolfcrypt = { version = "0.1.1", path = "../wolfcrypt", features = [
52+
wolfcrypt = { version = "0.1.2", path = "../wolfcrypt", features = [
5153
"digest", "hmac", "cmac", "hkdf", "pbkdf2", "aead", "cipher",
5254
"poly1305", "signature", "ecdsa", "ed25519", "ed448", "rsa",
5355
"mldsa", "mlkem", "keywrap", "dh", "des3", "ecdh", "rand",

wolfcrypt-dpe-hw/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ testing-hooks = []
5151
# library is available). On riscv32 bare-metal the caliptra-drivers crate
5252
# provides hardware acceleration directly; there is no system wolfSSL.
5353
[target.'cfg(not(target_arch = "riscv32"))'.dependencies]
54-
wolfcrypt-sys = { version = "0.1.1", path = "../wolfcrypt-sys" }
54+
wolfcrypt-sys = { version = "0.1.2", path = "../wolfcrypt-sys" }
5555

5656
[dependencies]
5757
# Requires the chipsalliance/caliptra repo checked out at ../caliptra relative

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.2"
4+
version = "1.16.3"
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.1", path = "../wolfcrypt-rs", default-features = false, optional = true }
59+
wolfcrypt-rs = { version = "0.1.2", path = "../wolfcrypt-rs", default-features = false, optional = true }
6060
zeroize.workspace = true
6161

6262
[dev-dependencies]

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.1"
4+
version = "0.1.2"
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.1", path = "../wolfcrypt-sys", default-features = false, features = ["vendored"] }
18+
wolfcrypt-sys = { version = "0.1.2", 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.1"
4+
version = "0.1.2"
55
edition = "2021"
66
description = "Auto-generated Rust FFI bindings to wolfSSL via bindgen"
77
license = "MIT"
@@ -23,4 +23,4 @@ cryptocb-pure = ["vendored", "wolfssl-src/cryptocb-pure"]
2323
[build-dependencies]
2424
bindgen = "0.72.0"
2525
pkg-config = "0.3"
26-
wolfssl-src = { version = "0.1.1", path = "../wolfssl-src" }
26+
wolfssl-src = { version = "0.1.2", 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.1"
4+
version = "0.1.2"
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.1", path = "../wolfcrypt-sys" }
29+
wolfcrypt-sys = { version = "0.1.2", 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.1"
4+
version = "1.1.2"
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.1", path = "../wolfcrypt-sys", default-features = false, features = ["vendored"] }
21+
wolfcrypt-sys = { version = "0.1.2", 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.1"
8+
version = "0.1.2"
99
edition = "2021"
1010
rust-version = "1.71.0"
1111
license = "MIT"
@@ -57,7 +57,7 @@ cryptocb-pure = ["wolfcrypt-rs/cryptocb-pure"]
5757
require-dev-id = []
5858

5959
[dependencies]
60-
wolfcrypt-rs = { version = "0.1.1", path = "../wolfcrypt-rs" }
60+
wolfcrypt-rs = { version = "0.1.2", path = "../wolfcrypt-rs" }
6161

6262
# RustCrypto trait crates (renamed to avoid module name collision).
6363
#

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.1"
4+
version = "0.1.2"
55
edition = "2021"
66
description = "Compile wolfSSL from source for use by wolfcrypt-sys"
77
license = "MIT"

0 commit comments

Comments
 (0)