Skip to content

Commit 8d69840

Browse files
committed
Auto merge of rust-lang#71868 - Mark-Simulacrum:stable-1.43.1, r=pietroalbini
[stable] 1.43.1 release * [Updated openssl-src to 1.1.1g for CVE-2020-1967.][71430] * [Fixed the stabilization of AVX-512 features.][71473] * [Fixed `cargo package --list` not working with unpublished dependencies.][cargo/8151] [71430]: rust-lang#71430 [71473]: rust-lang#71473 [cargo/8151]: rust-lang/cargo#8151
2 parents 4fb7144 + 1eb1c8d commit 8d69840

File tree

7 files changed

+29
-10
lines changed

7 files changed

+29
-10
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2249,9 +2249,9 @@ checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
22492249

22502250
[[package]]
22512251
name = "openssl-src"
2252-
version = "111.6.1+1.1.1d"
2252+
version = "111.9.0+1.1.1g"
22532253
source = "registry+https://github.com/rust-lang/crates.io-index"
2254-
checksum = "c91b04cb43c1a8a90e934e0cd612e2a5715d976d2d6cff4490278a0cddf35005"
2254+
checksum = "a2dbe10ddd1eb335aba3780eb2eaa13e1b7b441d2562fd962398740927f39ec4"
22552255
dependencies = [
22562256
"cc",
22572257
]

RELEASES.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Version 1.43.1 (2020-05-07)
2+
===========================
3+
4+
* [Updated openssl-src to 1.1.1g for CVE-2020-1967.][71430]
5+
* [Fixed the stabilization of AVX-512 features.][71473]
6+
* [Fixed `cargo package --list` not working with unpublished dependencies.][cargo/8151]
7+
8+
[71430]: https://github.com/rust-lang/rust/pull/71430
9+
[71473]: https://github.com/rust-lang/rust/issues/71473
10+
[cargo/8151]: https://github.com/rust-lang/cargo/issues/8151
11+
12+
113
Version 1.43.0 (2020-04-23)
214
==========================
315

@@ -14,7 +26,7 @@ Language
1426
- [Merge `fn` syntax + cleanup item parsing.][68728]
1527
- [`item` macro fragments can be interpolated into `trait`s, `impl`s, and `extern` blocks.][69366]
1628
For example, you may now write:
17-
```rust
29+
```rust
1830
macro_rules! mac_trait {
1931
($i:item) => {
2032
trait T { $i }
@@ -82,7 +94,7 @@ Misc
8294
- [Certain checks in the `const_err` lint were deemed unrelated to const
8395
evaluation][69185], and have been moved to the `unconditional_panic` and
8496
`arithmetic_overflow` lints.
85-
97+
8698
Compatibility Notes
8799
-------------------
88100

@@ -173,7 +185,7 @@ Language
173185
(e.g. `type Foo: Ord;`).
174186
- `...` (the C-variadic type) may occur syntactically directly as the type of
175187
any function parameter.
176-
188+
177189
These are still rejected *semantically*, so you will likely receive an error
178190
but these changes can be seen and parsed by procedural macros and
179191
conditional compilation.
@@ -465,7 +477,7 @@ Compatibility Notes
465477
- [Using `#[inline]` on function prototypes and consts now emits a warning under
466478
`unused_attribute` lint.][65294] Using `#[inline]` anywhere else inside traits
467479
or `extern` blocks now correctly emits a hard error.
468-
480+
469481
[65294]: https://github.com/rust-lang/rust/pull/65294/
470482
[66103]: https://github.com/rust-lang/rust/pull/66103/
471483
[65843]: https://github.com/rust-lang/rust/pull/65843/

src/bootstrap/channel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use build_helper::output;
1313
use crate::Build;
1414

1515
// The version number
16-
pub const CFG_RELEASE_NUM: &str = "1.43.0";
16+
pub const CFG_RELEASE_NUM: &str = "1.43.1";
1717

1818
pub struct GitInfo {
1919
inner: Option<Info>,

src/ci/docker/dist-various-2/build-cloudabi-toolchain.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ ln -s ../../${target} /usr/lib/llvm-5.0/${target}
3333

3434
# Install the C++ runtime libraries from CloudABI Ports.
3535
apt-key adv --batch --yes --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0DA51B8531344B15
36-
add-apt-repository -y 'deb https://nuxi.nl/distfiles/cloudabi-ports/debian/ cloudabi cloudabi'
36+
add-apt-repository -y \
37+
'deb https://ci-mirrors.rust-lang.org/rustc/2020-05-04-cloudabi-apt-archive/ cloudabi cloudabi'
3738

3839
apt-get update
3940
apt-get install -y "${target//_/-}-cxx-runtime"

src/libcore/internal_macros.rs

+6
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,9 @@ macro_rules! impl_fn_for_zst {
117117
)+
118118
}
119119
}
120+
121+
#[allow(unused_macros)]
122+
macro_rules! llvm_asm {
123+
// Redirect to asm! for stdarch in stable 1.43
124+
($($arg:tt)*) => { $crate::asm!($($arg)*) }
125+
}

src/stdarch

Submodule stdarch updated 61 files

0 commit comments

Comments
 (0)