-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10663c8
commit 6455ee6
Showing
4 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
## v0.9.0 (2023-10-18) | ||
|
||
### BREAKING CHANGE | ||
|
||
- Updates McEliece's implementation to the Round-4 specification. | ||
- Versioning no longer follows `liboqs` versioning. See #192 | ||
|
||
### Feat | ||
|
||
- **liboqs**: bump liboqs release to 0.9.0 | ||
|
||
## v0.8.0 (2023-08-21) | ||
|
||
## v0.7.2 (2022-08-22) | ||
|
||
## v0.7.2-rc2 (2022-08-15) | ||
|
||
## v0.7.1 (2021-12-17) | ||
|
||
## v0.7.0 (2021-08-12) | ||
|
||
## v0.6.0 (2021-06-08) | ||
|
||
## v0.5.0 (2021-03-11) | ||
|
||
## v0.3.0 (2020-11-25) | ||
|
||
## v0.2.0 (2020-10-16) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "oqs-sys" | ||
version = "0.8.0+liboqs-0.9.0" | ||
version = "0.9.0+liboqs-0.9.0" | ||
authors = ["Thom Wiggers <[email protected]>"] | ||
edition = "2021" | ||
links = "oqs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "oqs" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Thom Wiggers <[email protected]>"] | ||
edition = "2021" | ||
description = "A Rusty interface to Open-Quantum-Safe's liboqs" | ||
|
@@ -16,7 +16,7 @@ serde = { version = "1.0", optional = true, default-features = false, features = | |
|
||
[dependencies.oqs-sys] | ||
path = "../oqs-sys" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
default-features = false | ||
|
||
[features] | ||
|