Update RELEASES.md
This commit is contained in:
parent
312e53d39f
commit
1f3b626527
1 changed files with 8 additions and 6 deletions
14
RELEASES.md
14
RELEASES.md
|
@ -33,15 +33,15 @@ Libraries
|
|||
- [`UnsafeCell::into_inner` is now safe.][47204]
|
||||
- [Implement libstd for CloudABI.][47268]
|
||||
- [`Float::{from_bits, to_bits}` is now available in libcore.][46931]
|
||||
- [renamed `ptr::Shared` to `ptr::NonNull`.][46952]
|
||||
|
||||
- [Implement `AsRef<Path>` for Component][46985]
|
||||
- [Deprecated `[T]::rotate` in favor of `[T]::rotate_{left,right}`.][46777]
|
||||
- [Implemented `Write` for `Cursor<&mut Vec<T>>`][46830]
|
||||
- [Moved `Duration` to libcore.][46666]
|
||||
|
||||
Stabilized APIs
|
||||
---------------
|
||||
- [`Location::column`]
|
||||
- [`ptr::NonNull`]
|
||||
|
||||
The following functions can now be used in a constant expression.
|
||||
eg. `static MINUTE: Duration = Duration::from_secs(60);`
|
||||
|
@ -65,10 +65,11 @@ Compatibility Notes
|
|||
- [Deprecated `net::lookup_host`.][47510]
|
||||
- [`rustdoc` has switched to pulldown as the default markdown renderer.][47398]
|
||||
- The borrow checker was sometimes incorrectly permitting overlapping borrows
|
||||
around indexing operations (see #47349). This has been fixed (which also
|
||||
enabled some correct code that used to cause errors (e.g. #33903 and #46095).
|
||||
around indexing operations (see [#47349][47349]). This has been fixed (which also
|
||||
enabled some correct code that used to cause errors (e.g. [#33903][33903] and [#46095][46095]).
|
||||
- [Removed deprecated unstable attribute `#[simd]`.][47251]
|
||||
|
||||
[33903]: https://github.com/rust-lang/rust/pull/33903
|
||||
[47947]: https://github.com/rust-lang/rust/pull/47947
|
||||
[47948]: https://github.com/rust-lang/rust/pull/47948
|
||||
[47760]: https://github.com/rust-lang/rust/pull/47760
|
||||
|
@ -82,17 +83,18 @@ Compatibility Notes
|
|||
[47268]: https://github.com/rust-lang/rust/pull/47268
|
||||
[47282]: https://github.com/rust-lang/rust/pull/47282
|
||||
[47300]: https://github.com/rust-lang/rust/pull/47300
|
||||
[47349]: https://github.com/rust-lang/rust/pull/47349
|
||||
[46931]: https://github.com/rust-lang/rust/pull/46931
|
||||
[46952]: https://github.com/rust-lang/rust/pull/46952
|
||||
[46985]: https://github.com/rust-lang/rust/pull/46985
|
||||
[47006]: https://github.com/rust-lang/rust/pull/47006
|
||||
[46777]: https://github.com/rust-lang/rust/pull/46777
|
||||
[46830]: https://github.com/rust-lang/rust/pull/46830
|
||||
[46095]: https://github.com/rust-lang/rust/pull/46095
|
||||
[46666]: https://github.com/rust-lang/rust/pull/46666
|
||||
[cargo/5013]: https://github.com/rust-lang/cargo/pull/5013
|
||||
[cargo/5029]: https://github.com/rust-lang/cargo/pull/5029
|
||||
[RFC 1358]: https://github.com/rust-lang/rfcs/pull/1358
|
||||
[`Location::column`]: https://doc.rust-lang.org/std/panic/struct.Location.html#method.column
|
||||
[`ptr::NonNull`]: https://doc.rust-lang.org/std/ptr/struct.NonNull.html
|
||||
|
||||
|
||||
Version 1.24.0 (2018-02-15)
|
||||
|
|
Loading…
Add table
Reference in a new issue