Skip to content

Commit 9120759

Browse files
authored
Merge pull request #40 from robinhundt/release-plz-2026-01-21T19-38-26Z
chore: release
2 parents bbb5e4b + 5d491d4 commit 9120759

File tree

12 files changed

+51
-14
lines changed

12 files changed

+51
-14
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ blake3 = "1.5.5"
2222
bytemuck = { version = "1.25.0", features = ["must_cast"] }
2323
cpufeatures = "0.3.0"
2424
criterion = { version = "0.8", features = ["async_tokio", "html_reports"] }
25-
cryprot-codes = { version = "0.2.1", path = "cryprot-codes" }
26-
cryprot-core = { version = "0.3.0", path = "cryprot-core" }
27-
cryprot-net = { version = "0.2.1", path = "cryprot-net" }
28-
cryprot-pprf = { version = "0.2.1", path = "cryprot-pprf" }
25+
cryprot-codes = { version = "0.2.2", path = "cryprot-codes" }
26+
cryprot-core = { version = "0.3.1", path = "cryprot-core" }
27+
cryprot-net = { version = "0.2.2", path = "cryprot-net" }
28+
cryprot-pprf = { version = "0.2.2", path = "cryprot-pprf" }
2929
curve25519-dalek = "4.1.3"
3030
fastdivide = "0.4.2"
3131
futures = "0.3.32"

cryprot-codes/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/robinhundt/CryProt/compare/cryprot-codes-v0.2.1...cryprot-codes-v0.2.2) - 2026-03-05
11+
12+
### Other
13+
14+
- *(rand)* update rand and rand_core to 0.10
15+
1016
## [0.2.1](https://github.com/robinhundt/CryProt/compare/cryprot-codes-v0.2.0...cryprot-codes-v0.2.1) - 2026-01-21
1117

1218
### Other

cryprot-codes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2024"
44
keywords = ["expand-convolute"]
55
license = "MIT"
66
name = "cryprot-codes"
7-
version = "0.2.1"
7+
version = "0.2.2"
88

99
authors.workspace = true
1010
repository.workspace = true

cryprot-core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.1](https://github.com/robinhundt/CryProt/compare/cryprot-core-v0.3.0...cryprot-core-v0.3.1) - 2026-03-05
11+
12+
### Added
13+
14+
- *(aes)* update aes dependency and PAR_BLOCKS const
15+
16+
### Other
17+
18+
- *(deps)* bump proptest from 1.9.0 to 1.10.0
19+
- *(rand)* update rand and rand_core to 0.10
20+
- *(bench)* use std black_box
21+
1022
## [0.3.0](https://github.com/robinhundt/CryProt/compare/cryprot-core-v0.2.0...cryprot-core-v0.3.0) - 2026-01-21
1123

1224
### Removed

cryprot-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2024"
44
keywords = ["cryptography", "mpc"]
55
license = "MIT"
66
name = "cryprot-core"
7-
version = "0.3.0"
7+
version = "0.3.1"
88

99
authors.workspace = true
1010
repository.workspace = true

cryprot-net/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/robinhundt/CryProt/compare/cryprot-net-v0.2.1...cryprot-net-v0.2.2) - 2026-03-05
11+
12+
### Other
13+
14+
- update Cargo.toml dependencies
15+
1016
## [0.2.1](https://github.com/robinhundt/CryProt/compare/cryprot-net-v0.2.0...cryprot-net-v0.2.1) - 2026-01-21
1117

1218
### Other

cryprot-net/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2024"
44
keywords = ["networking", "quic"]
55
license = "MIT"
66
name = "cryprot-net"
7-
version = "0.2.1"
7+
version = "0.2.2"
88

99
authors.workspace = true
1010
repository.workspace = true

cryprot-ot/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/robinhundt/CryProt/compare/cryprot-ot-v0.2.1...cryprot-ot-v0.2.2) - 2026-03-05
11+
12+
### Other
13+
14+
- *(rand)* update rand and rand_core to 0.10
15+
- *(docs)* clarify base OT message security
16+
1017
## [0.2.1](https://github.com/robinhundt/CryProt/compare/cryprot-ot-v0.2.0...cryprot-ot-v0.2.1) - 2026-01-21
1118

1219
### Security

cryprot-ot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2024"
44
keywords = ["iknp", "kos", "oblivious-transfer", "silent-ot", "simplest-ot"]
55
license = "MIT"
66
name = "cryprot-ot"
7-
version = "0.2.1"
7+
version = "0.2.2"
88

99
authors.workspace = true
1010
repository.workspace = true

0 commit comments

Comments
 (0)