Skip to content

Commit 6455ee6

Browse files
committed
bump: version 0.8.0 → 0.9.0
1 parent 10663c8 commit 6455ee6

File tree

4 files changed

+32
-4
lines changed

4 files changed

+32
-4
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## v0.9.0 (2023-10-18)
2+
3+
### BREAKING CHANGE
4+
5+
- Updates McEliece's implementation to the Round-4 specification.
6+
- Versioning no longer follows `liboqs` versioning. See #192
7+
8+
### Feat
9+
10+
- **liboqs**: bump liboqs release to 0.9.0
11+
12+
## v0.8.0 (2023-08-21)
13+
14+
## v0.7.2 (2022-08-22)
15+
16+
## v0.7.2-rc2 (2022-08-15)
17+
18+
## v0.7.1 (2021-12-17)
19+
20+
## v0.7.0 (2021-08-12)
21+
22+
## v0.6.0 (2021-06-08)
23+
24+
## v0.5.0 (2021-03-11)
25+
26+
## v0.3.0 (2020-11-25)
27+
28+
## v0.2.0 (2020-10-16)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Update your `Cargo.toml` and include `oqs`:
3737

3838
```toml
3939
[dependencies]
40-
oqs = "0.8.0"
40+
oqs = "0.9.0"
4141
```
4242

4343
`oqs-sys` can be specified equivalently.

oqs-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oqs-sys"
3-
version = "0.8.0+liboqs-0.9.0"
3+
version = "0.9.0+liboqs-0.9.0"
44
authors = ["Thom Wiggers <[email protected]>"]
55
edition = "2021"
66
links = "oqs"

oqs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oqs"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Thom Wiggers <[email protected]>"]
55
edition = "2021"
66
description = "A Rusty interface to Open-Quantum-Safe's liboqs"
@@ -16,7 +16,7 @@ serde = { version = "1.0", optional = true, default-features = false, features =
1616

1717
[dependencies.oqs-sys]
1818
path = "../oqs-sys"
19-
version = "0.8.0"
19+
version = "0.9.0"
2020
default-features = false
2121

2222
[features]

0 commit comments

Comments
 (0)