about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-06-30 21:57:32 +0200
committerGitHub <noreply@github.com>2019-06-30 21:57:32 +0200
commit1abbf4b864f37809469d26df28a5eab14b89ce10 (patch)
tree4489f9e52f956c06abbdc62e1529d26c4faca521
parent43eba5fef287cfcd63b36321900d546be9496476 (diff)
parentc0fb34795a37c8e26d4d8d1bbccaa011b922a5b6 (diff)
downloadrust-1abbf4b864f37809469d26df28a5eab14b89ce10.tar.gz
rust-1abbf4b864f37809469d26df28a5eab14b89ce10.zip
Rollup merge of #62248 - RalfJung:release-notes, r=Mark-Simulacrum
before_exec actually will only get deprecated with 1.37

Not sure if we usually fix old release notes, but I just found this when scrolling over them.
-rw-r--r--RELEASES.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/RELEASES.md b/RELEASES.md
index b6e2171f6ee..5ceeea8d037 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -309,9 +309,9 @@ Misc
 
 Compatibility Notes
 -------------------
-- [`Command::before_exec` is now deprecated in favor of the
-  unsafe method `Command::pre_exec`.][58059]
-- [Use of `ATOMIC_{BOOL, ISIZE, USIZE}_INIT` is now deprecated.][57425] As you
+- [`Command::before_exec` is being replaced by the unsafe method
+  `Command::pre_exec`][58059] and will be deprecated with Rust 1.37.0.
+- [Use of `ATOMIC_{BOOL, ISIZE, USIZE}_INIT` is now deprecated][57425] as you
   can now use `const` functions in `static` variables.
 
 [58370]: https://github.com/rust-lang/rust/pull/58370/