Skip to content

Commit d107792

Browse files
committed
Auto merge of #73238 - Mark-Simulacrum:stable-next, r=Mark-Simulacrum
[stable] 1.44.1 release See release notes for details (or commits).
2 parents 49cae55 + 9592e67 commit d107792

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ dependencies = [
135135

136136
[[package]]
137137
name = "backtrace-sys"
138-
version = "0.1.35"
138+
version = "0.1.37"
139139
source = "registry+https://github.com/rust-lang/crates.io-index"
140-
checksum = "7de8aba10a69c8e8d7622c5710229485ec32e9d55fdad160ea559c086fdcd118"
140+
checksum = "18fbebbe1c9d1f383a9cc7e8ccdb471b91c8d024ee9c2ca5b5346121fe8b4399"
141141
dependencies = [
142142
"cc",
143143
"compiler_builtins",
@@ -292,7 +292,7 @@ dependencies = [
292292

293293
[[package]]
294294
name = "cargo"
295-
version = "0.45.0"
295+
version = "0.45.1"
296296
dependencies = [
297297
"anyhow",
298298
"atty",
@@ -4397,7 +4397,7 @@ dependencies = [
43974397

43984398
[[package]]
43994399
name = "rustfmt-nightly"
4400-
version = "1.4.14"
4400+
version = "1.4.16"
44014401
dependencies = [
44024402
"annotate-snippets",
44034403
"bytecount",

RELEASES.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Version 1.44.1 (2020-06-18)
2+
===========================
3+
4+
* [rustfmt accepts rustfmt_skip in cfg_attr again.][73078]
5+
* [Fix fingerprinting for lld on Windows with dylib.][cargo/8290]
6+
* [Don't hash executable filenames on apple platforms.][cargo/8329]
7+
* [Fix crashes when finding backtrace on macOS.][71397]
8+
9+
[71397]: https://github.com/rust-lang/rust/issues/71397
10+
[73078]: https://github.com/rust-lang/rust/issues/73078
11+
[cargo/8290]: https://github.com/rust-lang/cargo/pull/8290
12+
[cargo/8329]: https://github.com/rust-lang/cargo/pull/8329
13+
114
Version 1.44.0 (2020-06-04)
215
==========================
316

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.44.0";
16+
pub const CFG_RELEASE_NUM: &str = "1.44.1";
1717

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

src/ci/docker/wasm32/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ ENV PATH=$PATH:/emsdk-portable
2727
ENV PATH=$PATH:/emsdk-portable/upstream/emscripten/
2828
ENV PATH=$PATH:/emsdk-portable/node/12.9.1_64bit/bin/
2929
ENV BINARYEN_ROOT=/emsdk-portable/upstream/
30+
ENV EMSDK=/emsdk-portable
31+
ENV EM_CONFIG=/emsdk-portable/.emscripten
32+
ENV EM_CACHE=/emsdk-portable/upstream/emscripten/cache
3033

3134
ENV TARGETS=wasm32-unknown-emscripten
3235

0 commit comments

Comments
 (0)