summaryrefslogtreecommitdiff
path: root/RELEASES.md
diff options
context:
space:
mode:
authorAaron Power <Aaronepower@users.noreply.github.com>2017-09-11 17:49:33 +0100
committerGitHub <noreply@github.com>2017-09-11 17:49:33 +0100
commit3c6a8006527648240c41291e14ffc202e710544a (patch)
tree4b99468555a4ac72065600cc689711267907d2c5 /RELEASES.md
parent8b5ca089a2d11fa3697376fcee6b69dcc17b7d57 (diff)
downloadrust-3c6a8006527648240c41291e14ffc202e710544a.tar.gz
Update RELEASES.md
Diffstat (limited to 'RELEASES.md')
-rw-r--r--RELEASES.md20
1 files changed, 18 insertions, 2 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 4ea96a5a64c..18437a2ee59 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -7,12 +7,14 @@ Language
Example:
```
my_macro!(Vec<i32>::new); // Always worked
- my_macro!(Vec::<i32>::new); // Now works aswell
+ my_macro!(Vec::<i32>::new); // Now works
```
+
Compiler
--------
- [Upgraded jemalloc to 4.5.0][43911]
- [Enabled unwinding panics on Redox][43917]
+- [Now emits a warning when you have an unused `extern crate`][42588]
Libraries
---------
@@ -30,6 +32,14 @@ Cargo
- [You can now call `cargo install` with multiple package names][cargo/4216]
- [Cargo commands inside a virtual workspace will now implicitly
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
----
@@ -44,9 +54,10 @@ Compatibility Notes
breakage in subtyping corner cases.
- [rustc's JSON error output's byte position start at top of file.][42973]
Was previously relative to the rustc's internal `CodeMap` struct which
- 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
+[42588]: https://github.com/rust-lang/rust/pull/42588
[42973]: https://github.com/rust-lang/rust/pull/42973
[43459]: https://github.com/rust-lang/rust/pull/43459
[43540]: https://github.com/rust-lang/rust/pull/43540
@@ -56,8 +67,13 @@ Compatibility Notes
[43911]: https://github.com/rust-lang/rust/pull/43911
[43916]: https://github.com/rust-lang/rust/pull/43916
[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/4270]: https://github.com/rust-lang/cargo/pull/4270
[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)