about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-08-23 03:43:29 +0000
committerbors <bors@rust-lang.org>2023-08-23 03:43:29 +0000
commit6046aa06b6e2548ae0bfcfb0d61f33e8908e50a1 (patch)
treee3fd40e0a8d888bfa49374a33375f51c92dfb8fd
parente3a0e383dc242ab95eccbb64b456122cfd1cbef3 (diff)
parent42f993fd0239acc898d4a37af1beeff51d29940b (diff)
downloadrust-6046aa06b6e2548ae0bfcfb0d61f33e8908e50a1.tar.gz
rust-6046aa06b6e2548ae0bfcfb0d61f33e8908e50a1.zip
Auto merge of #115119 - cuviper:relnotes-1.72-api, r=Mark-Simulacrum
Update the links for Stabilized APIs in 1.72.0

* Use `stable` instead of `nightly` paths.
* Fix the anchors for `CStr::to_*` links.

r? `@Mark-Simulacrum`
-rw-r--r--RELEASES.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 722f7e5dd08..242b1c2eefd 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -65,16 +65,16 @@ Rustdoc
 Stabilized APIs
 ---------------
 
-- [`impl<T: Send> Sync for mpsc::Sender<T>`](https://doc.rust-lang.org/nightly/std/sync/mpsc/struct.Sender.html#impl-Sync-for-Sender%3CT%3E)
-- [`impl TryFrom<&OsStr> for &str`](https://doc.rust-lang.org/nightly/std/primitive.str.html#impl-TryFrom%3C%26'a+OsStr%3E-for-%26'a+str)
-- [`String::leak`](https://doc.rust-lang.org/nightly/alloc/string/struct.String.html#method.leak)
+- [`impl<T: Send> Sync for mpsc::Sender<T>`](https://doc.rust-lang.org/stable/std/sync/mpsc/struct.Sender.html#impl-Sync-for-Sender%3CT%3E)
+- [`impl TryFrom<&OsStr> for &str`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-TryFrom%3C%26'a+OsStr%3E-for-%26'a+str)
+- [`String::leak`](https://doc.rust-lang.org/stable/alloc/string/struct.String.html#method.leak)
 
 These APIs are now stable in const contexts:
 
-- [`CStr::from_bytes_with_nul`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
-- [`CStr::to_bytes`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
-- [`CStr::to_bytes_with_nul`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
-- [`CStr::to_str`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
+- [`CStr::from_bytes_with_nul`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
+- [`CStr::to_bytes`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.to_bytes)
+- [`CStr::to_bytes_with_nul`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.to_bytes_with_nul)
+- [`CStr::to_str`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.to_str)
 
 <a id="1.72.0-Cargo"></a>