Skip to content

Commit 75fe4cd

Browse files
authored
Fixing docs build + publishing 4.0.1 (#409)
1 parent ed5e7cf commit 75fe4cd

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,6 @@ jobs:
206206
command: clippy
207207
args: --all-targets --features argon2,std,curve25519,ecdsa,ed25519 -- -D warnings
208208

209-
- name: Run cargo doc
210-
uses: actions-rs/cargo@v1
211-
env:
212-
RUSTDOCFLAGS: -D warnings
213-
with:
214-
command: doc
215-
args: --no-deps --document-private-items --features argon2,std,curve25519,ecdsa,ed25519
216-
217209
format:
218210
name: cargo fmt
219211
runs-on: ubuntu-latest
@@ -235,6 +227,14 @@ jobs:
235227
command: fmt
236228
args: --all -- --check
237229

230+
- name: Run cargo doc
231+
uses: actions-rs/cargo@v1
232+
env:
233+
RUSTDOCFLAGS: -D warnings
234+
with:
235+
command: doc
236+
args: --no-deps --document-private-items --features argon2,std,curve25519,ecdsa,ed25519
237+
238238
taplo:
239239
name: Taplo
240240
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 4.0.1 (October 30, 2025)
4+
* Fixing docs building issue
5+
36
## 4.0.0 (October 23, 2025)
47
* Increased MSRV to 1.83
58
* Synced implementation with RFC 9807 (no core protocol changes)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "opaque-ke"
1010
readme = "README.md"
1111
repository = "https://github.com/facebook/opaque-ke"
1212
rust-version = "1.85"
13-
version = "4.0.0"
13+
version = "4.0.1"
1414

1515
[features]
1616
argon2 = ["dep:argon2"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1318,7 +1318,7 @@
13181318
//! [curve25519-dalek]: https://docs.rs/curve25519-dalek/4/curve25519_dalek/index.html#backends
13191319
13201320
#![no_std]
1321-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1321+
#![cfg_attr(docsrs, feature(doc_cfg))]
13221322
#![cfg_attr(not(test), deny(unsafe_code))]
13231323
#![warn(clippy::cargo, clippy::doc_markdown, missing_docs, rustdoc::all)]
13241324
#![cfg_attr(not(test), warn(unused_crate_dependencies))]

0 commit comments

Comments
 (0)