Skip to content

Commit 5f7ed12

Browse files
0.2.8 (stable): README: Links to work on both GitHub and rustdoc/crates.io - WIP2
1 parent 657dbd0 commit 5f7ed12

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ behind `main`. See also [CONTRIBUTING.md](CONTRIBUTING.md).
1313
`ndd::infer::NonDeDuplicatedStr` and `ndd::infer::NonDeDuplicatedCStr`
1414
-->
1515

16-
## 0.2.7 (stable) and 0.3.7-nightly
16+
## 0.2.8 (stable)
17+
18+
`README.md` links to work on both GitHub and `rustdoc` or `crates.io`.
19+
20+
## 0.2.7 (stable)
1721

1822
- `NonDeDuplicatedCStr` for FFI
1923
[`core::ffi::CStr`](https://doc.rust-lang.org/nightly/core/ffi/struct.CStr.html)

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndd"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
edition = "2024"
55

66
license = "BSD-2-Clause OR Apache-2.0 OR MIT"

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,5 @@ The following side fruit is `std`-only, but related: `std::sync::mutex::data_ptr
296296
[rust-lang/rust#146904](https://github.com/rust-lang/rust/pull/146904).
297297

298298
[`core::ptr::eq`]: https://doc.rust-lang.org/1.86.0/core/ptr/fn.eq.html
299-
[`core::ptr::eq`-NOT-USED_YET]: https://doc.rust-lang.org/1.86.0/core/ptr/fn.addr_eq.html
300-
<!--
301-
[`src/lib.rs` -> `addresses_unique_between_statics()`]: https://github.com/peter-lyons-kehl/ndd/blob/main/src/lib.rs#L246
302-
-->
299+
[`core::ptr::addr_eq`]: https://doc.rust-lang.org/1.86.0/core/ptr/fn.addr_eq.html
303300
[`src/lib.rs` -> `addresses_unique_between_statics()`]: src/lib.rs#L246

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// OVerride links, so that rustdoc can point them locally (or to docs.io, if run on docs.io).
2-
//! [`src/lib.rs` -> `addresses_unique_between_statics()`]: https://github.com/peter-lyons-kehl/ndd/blob/main/src/lib.rs#L246
2+
//! [`src/lib.rs` -> `addresses_unique_between_statics()`]:
3+
//! https://github.com/peter-lyons-kehl/ndd/blob/main/src/lib.rs#L246
34
#![doc = include_str!("../README.md")]
45
#![cfg_attr(not(any(doc, test)), no_std)]
56
#![allow(incomplete_features)]

0 commit comments

Comments
 (0)