@@ -7,12 +7,14 @@ Language
7
7
Example:
8
8
```
9
9
my_macro!(Vec<i32>::new); // Always worked
10
- my_macro!(Vec::<i32>::new); // Now works aswell
10
+ my_macro!(Vec::<i32>::new); // Now works
11
11
```
12
+
12
13
Compiler
13
14
--------
14
15
- [ Upgraded jemalloc to 4.5.0] [ 43911 ]
15
16
- [ Enabled unwinding panics on Redox] [ 43917 ]
17
+ - [ Now emits a warning when you have an unused ` extern crate ` ] [ 42588 ]
16
18
17
19
Libraries
18
20
---------
30
32
- [ You can now call ` cargo install ` with multiple package names] [ cargo/4216 ]
31
33
- [ Cargo commands inside a virtual workspace will now implicitly
32
34
pass ` --all ` ] [ cargo/4335 ]
35
+ - [ Added a ` [patch] ` section to ` Cargo.toml ` to handle
36
+ prepublication dependencies] [ cargo/4123 ] [ RFC 1969]
37
+ - [ ` include ` & ` exclude ` fields in ` Cargo.toml ` now accept gitignore
38
+ like patterns] [ cargo/4270 ]
39
+ - [ Added the ` --all-targets ` option] [ cargo/4400 ]
40
+ - [ Using required dependencies as a feature is now deprecated and emits
41
+ a warning] [ cargo/ ]
42
+
33
43
34
44
Misc
35
45
----
@@ -44,9 +54,10 @@ Compatibility Notes
44
54
breakage in subtyping corner cases.
45
55
- [ rustc's JSON error output's byte position start at top of file.] [ 42973 ]
46
56
Was previously relative to the rustc's internal ` CodeMap ` struct which
47
- required the unstable library ` libsyntax ` to correctly use.
57
+ required the unstable library ` libsyntax ` to correctly use.
48
58
49
59
[ 42565 ] : https://github.com/rust-lang/rust/pull/42565
60
+ [ 42588 ] : https://github.com/rust-lang/rust/pull/42588
50
61
[ 42973 ] : https://github.com/rust-lang/rust/pull/42973
51
62
[ 43459 ] : https://github.com/rust-lang/rust/pull/43459
52
63
[ 43540 ] : https://github.com/rust-lang/rust/pull/43540
@@ -56,8 +67,13 @@ Compatibility Notes
56
67
[ 43911 ] : https://github.com/rust-lang/rust/pull/43911
57
68
[ 43916 ] : https://github.com/rust-lang/rust/pull/43916
58
69
[ 43917 ] : https://github.com/rust-lang/rust/pull/43917
70
+ [ cargo/4123 ] : https://github.com/rust-lang/cargo/pull/4123
59
71
[ cargo/4216 ] : https://github.com/rust-lang/cargo/pull/4216
72
+ [ cargo/4270 ] : https://github.com/rust-lang/cargo/pull/4270
60
73
[ cargo/4335 ] : https://github.com/rust-lang/cargo/pull/4335
74
+ [ cargo/4364 ] : https://github.com/rust-lang/cargo/pull/4364
75
+ [ cargo/4400 ] : https://github.com/rust-lang/cargo/pull/4400
76
+ [ RFC 1969 ] : https://github.com/rust-lang/rfcs/pull/1969
61
77
62
78
63
79
Version 1.20.0 (2017-08-31)
0 commit comments