Skip to content

Commit 06186b8

Browse files
authored
Merge pull request #479 from pinkforest/doc-fix-release-pre5
Fix docs.rs release pre.5
2 parents b0b22de + 39053b1 commit 06186b8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "curve25519-dalek"
55
# - update html_root_url
66
# - update README if required by semver
77
# - if README was updated, also update module documentation in src/lib.rs
8-
version = "4.0.0-pre.4"
8+
version = "4.0.0-pre.5"
99
edition = "2021"
1010
rust-version = "1.56.1"
1111
authors = ["Isis Lovecruft <[email protected]>",
@@ -28,8 +28,8 @@ exclude = [
2828
rustdoc-args = [
2929
"--html-in-header", "docs/assets/rustdoc-include-katex-header.html",
3030
"--cfg", "docsrs",
31-
'--cfg=curve25519_dalek_backend="simd"',
3231
]
32+
rustc-args = ["--cfg", "curve25519_dalek_backend=\"simd\""]
3333
features = ["serde", "rand_core", "digest"]
3434

3535
[badges]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ curve25519-dalek = "3"
4343
To use the latest prerelease (see changes [below](#breaking-changes-in-400)),
4444
use the following line in your project's `Cargo.toml`:
4545
```toml
46-
curve25519-dalek = "4.0.0-pre.4"
46+
curve25519-dalek = "4.0.0-pre.5"
4747
```
4848

4949
## Feature Flags

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#![doc(
2121
html_logo_url = "https://cdn.jsdelivr.net/gh/dalek-cryptography/curve25519-dalek/docs/assets/dalek-logo-clear.png"
2222
)]
23-
#![doc(html_root_url = "https://docs.rs/curve25519-dalek/4.0.0-pre.2")]
23+
#![doc(html_root_url = "https://docs.rs/curve25519-dalek/4.0.0-pre.5")]
2424
#![doc = include_str!("../README.md")]
2525

2626
//------------------------------------------------------------------------

0 commit comments

Comments
 (0)