Skip to content

Commit e75f58f

Browse files
authored
Merge pull request #851 from brson/bump
Bump to 0.7.0
2 parents 858dd08 + 9283d6a commit e75f58f

File tree

7 files changed

+45
-24
lines changed

7 files changed

+45
-24
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# 0.7.0
2+
3+
* [Correctly "detect" host endianness on MIPS](https://github.com/rust-lang-nursery/rustup.rs/pull/802)
4+
* [Add powershell completions](https://github.com/rust-lang-nursery/rustup.rs/pull/801)
5+
* [Update toolchain used to build rustup](https://github.com/rust-lang-nursery/rustup.rs/pull/741)
6+
* [Support probing MIPS64 n64 targets](https://github.com/rust-lang-nursery/rustup.rs/pull/815)
7+
* [Support MIPS architectures in rustup-init.sh](https://github.com/rust-lang-nursery/rustup.rs/pull/825)
8+
* [Automatically detect NetBSD during standard install](https://github.com/rust-lang-nursery/rustup.rs/pull/824)
9+
* [Fix symlink creation on windows](https://github.com/rust-lang-nursery/rustup.rs/pull/823)
10+
* [Search PATH for binaries run by `rustup run`](https://github.com/rust-lang-nursery/rustup.rs/pull/822)
11+
* [Recursive tool invocations should invoke the proxy, not the tool directly](https://github.com/rust-lang-nursery/rustup.rs/pull/812)
12+
* [Upgrade error-chain](https://github.com/rust-lang-nursery/rustup.rs/pull/841)
13+
* [Add FAQ entry for downloading Rust source](https://github.com/rust-lang-nursery/rustup.rs/pull/840)
14+
* [Rename ~/.multirust to ~/.rustup](https://github.com/rust-lang-nursery/rustup.rs/pull/830)
15+
* [Remove some codegen hacks](https://github.com/rust-lang-nursery/rustup.rs/pull/850)
16+
* [Update libc for MIPS64 host builds](https://github.com/rust-lang-nursery/rustup.rs/pull/847)
17+
* [Default to MSVC on Windows](https://github.com/rust-lang-nursery/rustup.rs/pull/842)
18+
19+
Contributors: Alex Crichton, Arch, bors, Brian Anderson, Diggory Blake, Kai
20+
Roßwag, Kevin K, Oliver Schneider, Ryan Havar, Tobias Bucher, Wang Xuerui
21+
122
# 0.6.5
223

324
* [Update bundled curl code](https://github.com/rust-lang-nursery/rustup.rs/pull/790)

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup"
4-
version = "0.6.5"
4+
version = "0.7.0"
55
authors = [ "Diggory Blake <[email protected]>" ]
66
description = "multirust in rust - manage multiple rust installations with ease"
77

@@ -32,8 +32,8 @@ no-self-update = []
3232
msi-installed = []
3333

3434
[dependencies]
35-
rustup-dist = { path = "src/rustup-dist", version = "0.6.5" }
36-
rustup-utils = { path = "src/rustup-utils", version = "0.6.5" }
35+
rustup-dist = { path = "src/rustup-dist", version = "0.7.0" }
36+
rustup-utils = { path = "src/rustup-utils", version = "0.7.0" }
3737
download = { path = "src/download" }
3838
error-chain = "0.7.1"
3939
clap = "2.18.0"
@@ -60,7 +60,7 @@ kernel32-sys = "0.2.1"
6060
gcc = "0.3.28"
6161

6262
[dev-dependencies]
63-
rustup-mock = { path = "src/rustup-mock", version = "0.6.5" }
63+
rustup-mock = { path = "src/rustup-mock", version = "0.7.0" }
6464
lazy_static = "0.1.15"
6565

6666
[workspace]

src/rustup-dist/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup-dist"
4-
version = "0.6.5"
4+
version = "0.7.0"
55
authors = [ "Diggory Blake <[email protected]>" ]
66
description = "Installation from a Rust distribution server"
77
build = "build.rs"
@@ -23,9 +23,9 @@ tempdir = "0.3.4"
2323
walkdir = "0.1.5"
2424
toml = "0.1.27"
2525
sha2 = "0.1.2"
26-
rustup-utils = { path = "../rustup-utils", version = "0.6.5" }
26+
rustup-utils = { path = "../rustup-utils", version = "0.7.0" }
2727
error-chain = "0.7.1"
28-
rustup-mock = { path = "../rustup-mock", version = "0.6.5" }
28+
rustup-mock = { path = "../rustup-mock", version = "0.7.0" }
2929

3030
[target."cfg(windows)".dependencies]
3131
winapi = "0.2.8"

src/rustup-mock/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup-mock"
4-
version = "0.6.5"
4+
version = "0.7.0"
55
authors = [ "Diggory Blake <[email protected]>" ]
66
description = "Test mocks for multirust"
77

@@ -19,7 +19,7 @@ tempdir = "0.3.4"
1919
itertools = "0.4.1"
2020
tar = "0.4.0"
2121
toml = "0.1.27"
22-
rustup-utils = { path = "../rustup-utils", version = "0.6.5" }
22+
rustup-utils = { path = "../rustup-utils", version = "0.7.0" }
2323
sha2 = "0.1.2"
2424
wait-timeout = "0.1.3"
2525

src/rustup-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup-utils"
4-
version = "0.6.5"
4+
version = "0.7.0"
55
authors = [ "Diggory Blake <[email protected]>" ]
66
description = "multirust in rust - manage multiple rust installations with ease"
77

src/rustup-win-installer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustup-win-installer"
3-
version = "0.6.5"
3+
version = "0.7.0"
44
authors = ["Patrick Reisert"]
55
build = "build.rs"
66

@@ -10,4 +10,4 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
winapi = "0.2"
13-
rustup = { path = "../../", version = "0.6.5" }
13+
rustup = { path = "../../", version = "0.7.0" }

0 commit comments

Comments
 (0)