From 3caa3a0c591ca00ccc8ddbc8f0fa8303690c9799 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 27 Feb 2019 16:55:20 -0600 Subject: [PATCH 1/2] Update RELEASES to include missing feature "`Rc`, `Arc` and `Pin` as method receivers" is in this release, but was not mentioned. --- RELEASES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index 841467b69c986..b0fa20a2c259d 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -53,6 +53,7 @@ Language ``` - [`extern` functions will now abort by default when panicking.][55982] This was previously undefined behaviour. +- [You may now use `Rc`, `Arc` and `Pin` as method receivers](56805) Compiler -------- @@ -121,6 +122,7 @@ Compatibility Notes [57234]: https://github.com/rust-lang/rust/pull/57234/ [57332]: https://github.com/rust-lang/rust/pull/57332/ [56947]: https://github.com/rust-lang/rust/pull/56947/ +[56805]: https://github.com/rust-lang/rust/pull/56805 [57049]: https://github.com/rust-lang/rust/pull/57049/ [57067]: https://github.com/rust-lang/rust/pull/57067/ [56769]: https://github.com/rust-lang/rust/pull/56769/ From 4184e18055e47334aab2c2289312e9b08bcbb95e Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 27 Feb 2019 16:56:33 -0600 Subject: [PATCH 2/2] fix link --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index b0fa20a2c259d..5654b1d94e89b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -53,7 +53,7 @@ Language ``` - [`extern` functions will now abort by default when panicking.][55982] This was previously undefined behaviour. -- [You may now use `Rc`, `Arc` and `Pin` as method receivers](56805) +- [You may now use `Rc`, `Arc` and `Pin` as method receivers][56805]. Compiler --------