Update RELEASES.md
This commit is contained in:
parent
8b5ca089a2
commit
3c6a800652
1 changed files with 18 additions and 2 deletions
18
RELEASES.md
18
RELEASES.md
|
@ -7,12 +7,14 @@ Language
|
||||||
Example:
|
Example:
|
||||||
```
|
```
|
||||||
my_macro!(Vec<i32>::new); // Always worked
|
my_macro!(Vec<i32>::new); // Always worked
|
||||||
my_macro!(Vec::<i32>::new); // Now works aswell
|
my_macro!(Vec::<i32>::new); // Now works
|
||||||
```
|
```
|
||||||
|
|
||||||
Compiler
|
Compiler
|
||||||
--------
|
--------
|
||||||
- [Upgraded jemalloc to 4.5.0][43911]
|
- [Upgraded jemalloc to 4.5.0][43911]
|
||||||
- [Enabled unwinding panics on Redox][43917]
|
- [Enabled unwinding panics on Redox][43917]
|
||||||
|
- [Now emits a warning when you have an unused `extern crate`][42588]
|
||||||
|
|
||||||
Libraries
|
Libraries
|
||||||
---------
|
---------
|
||||||
|
@ -30,6 +32,14 @@ Cargo
|
||||||
- [You can now call `cargo install` with multiple package names][cargo/4216]
|
- [You can now call `cargo install` with multiple package names][cargo/4216]
|
||||||
- [Cargo commands inside a virtual workspace will now implicitly
|
- [Cargo commands inside a virtual workspace will now implicitly
|
||||||
pass `--all`][cargo/4335]
|
pass `--all`][cargo/4335]
|
||||||
|
- [Added a `[patch]` section to `Cargo.toml` to handle
|
||||||
|
prepublication dependencies][cargo/4123] [RFC 1969]
|
||||||
|
- [`include` & `exclude` fields in `Cargo.toml` now accept gitignore
|
||||||
|
like patterns][cargo/4270]
|
||||||
|
- [Added the `--all-targets` option][cargo/4400]
|
||||||
|
- [Using required dependencies as a feature is now deprecated and emits
|
||||||
|
a warning][cargo/]
|
||||||
|
|
||||||
|
|
||||||
Misc
|
Misc
|
||||||
----
|
----
|
||||||
|
@ -47,6 +57,7 @@ Compatibility Notes
|
||||||
required the unstable library `libsyntax` to correctly use.
|
required the unstable library `libsyntax` to correctly use.
|
||||||
|
|
||||||
[42565]: https://github.com/rust-lang/rust/pull/42565
|
[42565]: https://github.com/rust-lang/rust/pull/42565
|
||||||
|
[42588]: https://github.com/rust-lang/rust/pull/42588
|
||||||
[42973]: https://github.com/rust-lang/rust/pull/42973
|
[42973]: https://github.com/rust-lang/rust/pull/42973
|
||||||
[43459]: https://github.com/rust-lang/rust/pull/43459
|
[43459]: https://github.com/rust-lang/rust/pull/43459
|
||||||
[43540]: https://github.com/rust-lang/rust/pull/43540
|
[43540]: https://github.com/rust-lang/rust/pull/43540
|
||||||
|
@ -56,8 +67,13 @@ Compatibility Notes
|
||||||
[43911]: https://github.com/rust-lang/rust/pull/43911
|
[43911]: https://github.com/rust-lang/rust/pull/43911
|
||||||
[43916]: https://github.com/rust-lang/rust/pull/43916
|
[43916]: https://github.com/rust-lang/rust/pull/43916
|
||||||
[43917]: https://github.com/rust-lang/rust/pull/43917
|
[43917]: https://github.com/rust-lang/rust/pull/43917
|
||||||
|
[cargo/4123]: https://github.com/rust-lang/cargo/pull/4123
|
||||||
[cargo/4216]: https://github.com/rust-lang/cargo/pull/4216
|
[cargo/4216]: https://github.com/rust-lang/cargo/pull/4216
|
||||||
|
[cargo/4270]: https://github.com/rust-lang/cargo/pull/4270
|
||||||
[cargo/4335]: https://github.com/rust-lang/cargo/pull/4335
|
[cargo/4335]: https://github.com/rust-lang/cargo/pull/4335
|
||||||
|
[cargo/4364]: https://github.com/rust-lang/cargo/pull/4364
|
||||||
|
[cargo/4400]: https://github.com/rust-lang/cargo/pull/4400
|
||||||
|
[RFC 1969]: https://github.com/rust-lang/rfcs/pull/1969
|
||||||
|
|
||||||
|
|
||||||
Version 1.20.0 (2017-08-31)
|
Version 1.20.0 (2017-08-31)
|
||||||
|
|
Loading…
Add table
Reference in a new issue