chore: bump to v1.0.0-rc.0, fix doc #6

Merged
breakingbread merged 1 commits from chore/bump-fix-clean into master 2026-07-02 23:21:29 +02:00
4 changed files with 18 additions and 11 deletions
+9 -2
View File
@@ -1,12 +1,19 @@
# Changelog
## 1.0.0-pre.1 (July 1, 2026)
## 1.0.0-rc.0 (July 3, 2026)
* Fixed doc showing incorrect MSRV
* Fixed readme incorrect doc link
* Bump `ecdsa` to `0.17`
* Bump `voprf-vx` to `1.0.0-rc`
## 1.0.0-pre.1 (July 2, 2026)
* Fixed README package name
* Implement `zeroize` feature on `argon2`, `ed25519-dalek`, `hmac`, `chacha20poly1305` and `sha2`
* Removed `rand_core` dependency to use it through `rand` re-export
## 1.0.0-pre.0 (June 29, 2026)
## 1.0.0-pre.0 (July 1, 2026)
Forked from [facebook/opaque-ke](https://github.com/facebook/opaque-ke/) at `4.1.0-pre.2`.
+6 -6
View File
@@ -14,7 +14,7 @@ name = "opaque-vx"
readme = "README.md"
repository = "https://github.com/vexahub/opaque-vx"
rust-version = "1.90"
version = "1.0.0-pre.1"
version = "1.0.0-rc.0"
[features]
argon2 = ["dep:argon2"]
@@ -48,7 +48,7 @@ curve25519-dalek = { version = "5.0.0-rc", default-features = false, features =
derive-where = { version = "1.6", features = ["zeroize-on-drop"] }
digest = { version = "0.11", features = ["zeroize"] }
displaydoc = { version = "0.2", default-features = false }
ecdsa = { version = "0.17.0-rc.23", default-features = false, features = [
ecdsa = { version = "0.17", default-features = false, features = [
"algorithm",
], optional = true }
ed25519-dalek = { version = "3.0.0-rc", default-features = false, features = [
@@ -69,7 +69,7 @@ serde = { version = "1", default-features = false, features = [
"derive",
], optional = true }
subtle = { version = "2.6", default-features = false }
voprf = { package = "voprf-vx", version = "1.0.0-pre.1", default-features = false, features = [
voprf = { package = "voprf-vx", version = "1.0.0-rc", default-features = false, features = [
"danger",
] }
zeroize = { version = "1.9", features = ["zeroize_derive"] }
@@ -85,18 +85,18 @@ criterion = "0.8"
cryptoki = "0.12"
elliptic-curve = { version = "0.14", features = ["alloc", "pkcs8"] }
hex = "0.4"
p256 = { version = "0.14.0-rc.15", default-features = false, features = [
p256 = { version = "0.14.0-rc", default-features = false, features = [
"ecdsa",
"hash2curve",
"pkcs8",
"oprf",
] }
p384 = { version = "0.14.0-rc.15", default-features = false, features = [
p384 = { version = "0.14.0-rc", default-features = false, features = [
"hash2curve",
"pkcs8",
"oprf",
] }
p521 = { version = "0.14.0-rc.15", default-features = false, features = [
p521 = { version = "0.14.0-rc", default-features = false, features = [
"hash2curve",
"pkcs8",
"oprf",
+2 -2
View File
@@ -20,7 +20,7 @@ OPAQUE is a PKI-free aPAKE that is secure against pre-computation attacks and ca
Documentation
-------------
The API can be found [here](https://docs.rs/opaque-ke-vx/) along with an example for usage. More examples can be found
The API can be found [here](https://docs.rs/opaque-vx/) along with an example for usage. More examples can be found
in
the [examples](./examples) directory.
@@ -30,7 +30,7 @@ Installation
Add the following line to the dependencies of your `Cargo.toml`:
```
opaque-ke = { package = "opaque-vx", version = "1.0.0-pre.0" }
opaque-ke = { package = "opaque-vx", version = "1.0.0-rc.0" }
```
### Minimum Supported Rust Version
+1 -1
View File
@@ -7,7 +7,7 @@
//!
//! ### Minimum Supported Rust Version
//!
//! Rust **1.87** or higher.
//! Rust **1.90** or higher.
//!
//! # Overview
//!