Skip to content

Commit 8ebe732

Browse files
Merge pull request #1045 from cryspen/franziskus/v0.0.3-release
bump 0.0.3-alpha.3 to 0.0.3
2 parents f9d1802 + c6154d2 commit 8ebe732

File tree

45 files changed

+110
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+110
-106
lines changed

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,17 @@ bench = false # so libtest doesn't eat the argumen
8080
libcrux-platform = { version = "=0.0.2", path = "sys/platform" }
8181

8282
[dependencies]
83-
libcrux-traits = { version = "=0.0.3-alpha.3", path = "traits" }
84-
libcrux-hacl-rs = { version = "=0.0.3-alpha.3", path = "hacl-rs" }
83+
libcrux-traits = { version = "=0.0.3", path = "traits" }
84+
libcrux-hacl-rs = { version = "=0.0.3", path = "hacl-rs" }
8585
libcrux-hacl = { version = "=0.0.2", path = "sys/hacl" }
8686
libcrux-platform = { version = "=0.0.2", path = "sys/platform" }
87-
libcrux-hkdf = { version = "=0.0.3-alpha.3", path = "libcrux-hkdf" }
88-
libcrux-hmac = { version = "=0.0.3-alpha.3", path = "libcrux-hmac" }
89-
libcrux-sha2 = { version = "=0.0.3-alpha.3", path = "sha2" }
90-
libcrux-ed25519 = { version = "=0.0.3-alpha.3", path = "ed25519" }
91-
libcrux-ecdh = { version = "=0.0.3-alpha.3", path = "libcrux-ecdh" }
92-
libcrux-ml-kem = { version = "=0.0.3-alpha.3", path = "libcrux-ml-kem" }
93-
libcrux-kem = { version = "=0.0.3-alpha.3", path = "libcrux-kem" }
87+
libcrux-hkdf = { version = "=0.0.3", path = "libcrux-hkdf" }
88+
libcrux-hmac = { version = "=0.0.3", path = "libcrux-hmac" }
89+
libcrux-sha2 = { version = "=0.0.3", path = "sha2" }
90+
libcrux-ed25519 = { version = "=0.0.3", path = "ed25519" }
91+
libcrux-ecdh = { version = "=0.0.3", path = "libcrux-ecdh" }
92+
libcrux-ml-kem = { version = "=0.0.3", path = "libcrux-ml-kem" }
93+
libcrux-kem = { version = "=0.0.3", path = "libcrux-kem" }
9494
rand = { version = "0.9" }
9595
log = { version = "0.4", optional = true }
9696
# WASM API

blake2/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [v0.0.3-alpha.1]
8+
## [0.0.3] (2025-06-30)
99

1010
- [#922](https://github.com/cryspen/libcrux/pull/922): Make `no_std` optional using default `std` feature
1111
- [#993](https://github.com/cryspen/libcrux/pull/993): Update dependencies `hacl-rs` and `macros`

blake2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "libcrux-blake2"
33
description = "Formally verified blake2 hash library"
4-
version = "0.0.3-alpha.3"
4+
version = "0.0.3"
55
readme = "Readme.md"
66

77
authors.workspace = true
@@ -15,8 +15,8 @@ std = []
1515
default = ["std"]
1616

1717
[dependencies]
18-
libcrux-hacl-rs = { version = "=0.0.3-alpha.3", path = "../hacl-rs/" }
19-
libcrux-macros = { version = "=0.0.3-alpha.3", path = "../macros" }
18+
libcrux-hacl-rs = { version = "=0.0.3", path = "../hacl-rs/" }
19+
libcrux-macros = { version = "=0.0.3", path = "../macros" }
2020

2121
[dev-dependencies]
2222
criterion = "0.6"

chacha20poly1305/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [v0.0.3-alpha.1]
8+
## [0.0.3] (2025-06-30)
99

1010
- [#896](https://github.com/cryspen/libcrux/pull/896): Add support for XChacha20Poly1305
1111
- [#993](https://github.com/cryspen/libcrux/pull/993): Update dependencies `hacl-rs` and `macros`

chacha20poly1305/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "libcrux-chacha20poly1305"
33
description = "Formally verified ChaCha20-Poly1305 AEAD library"
4-
version = "0.0.3-alpha.3"
4+
version = "0.0.3"
55
readme = "Readme.md"
66

77
authors.workspace = true
@@ -11,11 +11,11 @@ edition.workspace = true
1111
repository.workspace = true
1212

1313
[dependencies]
14-
libcrux-poly1305 = { version = "=0.0.3-alpha.3", path = "../poly1305/", features = [
14+
libcrux-poly1305 = { version = "=0.0.3", path = "../poly1305/", features = [
1515
"expose-hacl",
1616
] }
17-
libcrux-hacl-rs = { version = "=0.0.3-alpha.3", path = "../hacl-rs/" }
18-
libcrux-macros = { version = "=0.0.3-alpha.3", path = "../macros" }
17+
libcrux-hacl-rs = { version = "=0.0.3", path = "../hacl-rs/" }
18+
libcrux-macros = { version = "=0.0.3", path = "../macros" }
1919

2020
[dev-dependencies]
2121
hex = { version = "0.4.3", features = ["serde"] }

curve25519/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [v0.0.3-alpha.1]
8+
## [0.0.3] (2025-06-30)
99

1010
- [#993](https://github.com/cryspen/libcrux/pull/993): Update dependencies `hacl-rs` and `macros`

curve25519/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "libcrux-curve25519"
33
description = "Formally verified curve25519 ECDH library"
4-
version = "0.0.3-alpha.3"
4+
version = "0.0.3"
55
readme = "Readme.md"
66

77
authors.workspace = true
@@ -11,5 +11,5 @@ edition.workspace = true
1111
repository.workspace = true
1212

1313
[dependencies]
14-
libcrux-hacl-rs = { version = "=0.0.3-alpha.3", path = "../hacl-rs/" }
15-
libcrux-macros = { version = "=0.0.3-alpha.3", path = "../macros" }
14+
libcrux-hacl-rs = { version = "=0.0.3", path = "../hacl-rs/" }
15+
libcrux-macros = { version = "=0.0.3", path = "../macros" }

ecdsa/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [v0.0.3-alpha.1]
8+
## [0.0.3] (2025-06-30)
99

1010
- [#922](https://github.com/cryspen/libcrux/pull/922): Upgrade dependencies for `libcrux-sha2` and `libcrux-p256`

ecdsa/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libcrux-ecdsa"
33
description = "Formally verified ECDSA signature library"
44
readme = "Readme.md"
5-
version = "0.0.3-alpha.3"
5+
version = "0.0.3"
66

77
authors.workspace = true
88
license.workspace = true
@@ -11,10 +11,10 @@ edition.workspace = true
1111
repository.workspace = true
1212

1313
[dependencies]
14-
libcrux-p256 = { version = "=0.0.3-alpha.3", path = "../p256", features = [
14+
libcrux-p256 = { version = "=0.0.3", path = "../p256", features = [
1515
"expose-hacl",
1616
] }
17-
libcrux-sha2 = { version = "=0.0.3-alpha.3", path = "../sha2" }
17+
libcrux-sha2 = { version = "=0.0.3", path = "../sha2" }
1818
rand = { version = "0.9", optional = true }
1919

2020
[features]

ed25519/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [v0.0.3-alpha.1]
8+
## [0.0.3] (2025-06-30)
99

1010
- [#922](https://github.com/cryspen/libcrux/pull/922): Upgrade `libcrux-sha2` dependency
1111
- [#993](https://github.com/cryspen/libcrux/pull/993): Update dependencies `hacl-rs` and `macros`

0 commit comments

Comments
 (0)