File tree 3 files changed +19
-7
lines changed
3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,19 @@ Compatibility Notes
68
68
- [ Rustc now correctly relates the lifetime of an existential associated
69
69
type.] [ 71896 ] This fixes some edge cases where ` rustc ` would erroneously allow
70
70
you to pass a shorter lifetime than expected.
71
-
71
+ - [ Rustc now dynamically links to ` libz ` (also called ` zlib ` ) on Linux.] [ 74420 ]
72
+ The library will need to be installed for ` rustc ` to work, even though we
73
+ expect it to be already available on most systems.
74
+ - [ Tests annotated with ` #[should_panic] ` are broken on ARMv7 while running
75
+ under QEMU.] [ 74820 ]
76
+ - [ Pretty printing of some tokens in procedural macros changed.] [ 75453 ] The
77
+ exact output returned by rustc's pretty printing is an unstable
78
+ implementation detail: we recommend any macro relying on it to switch to a
79
+ more robust parsing system.
80
+
81
+ [ 75453 ] : https://github.com/rust-lang/rust/issues/75453/
82
+ [ 74820 ] : https://github.com/rust-lang/rust/issues/74820/
83
+ [ 74420 ] : https://github.com/rust-lang/rust/issues/74420/
72
84
[ 74109 ] : https://github.com/rust-lang/rust/pull/74109/
73
85
[ 74150 ] : https://github.com/rust-lang/rust/pull/74150/
74
86
[ 73862 ] : https://github.com/rust-lang/rust/pull/73862/
Original file line number Diff line number Diff line change 63
63
#
64
64
# FIXME: need a scheme for changing this `nightly` value to `beta` and `stable`
65
65
# either automatically or manually.
66
- export RUST_RELEASE_CHANNEL=nightly
66
+ export RUST_RELEASE_CHANNEL=beta
67
67
68
68
# Always set the release channel for bootstrap; this is normally not important (i.e., only dist
69
69
# builds would seem to matter) but in practice bootstrap wants to know whether we're targeting
Original file line number Diff line number Diff line change 12
12
# source tarball for a stable release you'll likely see `1.x.0` for rustc and
13
13
# `0.(x+1).0` for Cargo where they were released on `date`.
14
14
15
- date: 2020-07-16
16
- rustc: beta
17
- cargo: beta
15
+ date: 2020-08-24
16
+ rustc: 1.46.0
17
+ cargo: 0.47.0
18
18
19
19
# We use a nightly rustfmt to format the source because it solves some
20
20
# bootstrapping issues with use of new syntax in this repo. If you're looking at
21
21
# the beta/stable branch, this key should be omitted, as we don't want to depend
22
22
# on rustfmt from nightly there.
23
- rustfmt: nightly-2020-07-12
23
+ # rustfmt: nightly-2020-07-12
24
24
25
25
# When making a stable release the process currently looks like:
26
26
#
@@ -40,4 +40,4 @@ rustfmt: nightly-2020-07-12
40
40
# looking at a beta source tarball and it's uncommented we'll shortly comment it
41
41
# out.
42
42
43
- # dev: 1
43
+ dev: 1
You can’t perform that action at this time.
0 commit comments