Skip to content

Commit fd90642

Browse files
committed
Merge pull request #432 from brson/changelog
Add two more PRs to the 0.1.10 changelog
2 parents bd9fd2a + e9e527c commit fd90642

File tree

7 files changed

+30
-28
lines changed

7 files changed

+30
-28
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# 0.1.10
22

3+
* [Multiple cli improvements](https://github.com/rust-lang-nursery/rustup.rs/pull/419).
4+
* [Support HTTP protocol again](https://github.com/rust-lang-nursery/rustup.rs/pull/431).
35
* [Improvements to welcome screen](https://github.com/rust-lang-nursery/rustup.rs/pull/418).
46
* [Don't try to update non-tracking channels](https://github.com/rust-lang-nursery/rustup.rs/pull/425).
57
* [Don't panic when NativeSslStream lock is poisoned](https://github.com/rust-lang-nursery/rustup.rs/pull/429).

Cargo.lock

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

Cargo.toml

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

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

@@ -18,9 +18,9 @@ license = "MIT OR Apache-2.0"
1818
build = "build.rs"
1919

2020
[dependencies]
21-
rustup-dist = { path = "src/rustup-dist", version = "0.1.11-pre" }
22-
rustup-utils = { path = "src/rustup-utils", version = "0.1.11-pre" }
23-
error-chain = { path = "src/error-chain", version = "0.1.11-pre" }
21+
rustup-dist = { path = "src/rustup-dist", version = "0.1.10" }
22+
rustup-utils = { path = "src/rustup-utils", version = "0.1.10" }
23+
error-chain = { path = "src/error-chain", version = "0.1.10" }
2424
clap = "2.2.4"
2525
regex = "0.1.41"
2626
url = "1.1.0"
@@ -42,7 +42,7 @@ user32-sys = "0.1.2"
4242
kernel32-sys = "0.2.1"
4343

4444
[dev-dependencies]
45-
rustup-mock = { path = "src/rustup-mock", version = "0.1.11-pre" }
45+
rustup-mock = { path = "src/rustup-mock", version = "0.1.10" }
4646
lazy_static = "0.1.15"
4747

4848
[lib]

src/error-chain/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 = "error-chain"
4-
version = "0.1.11-pre"
4+
version = "0.1.10"
55
authors = [ "Brian Anderson <[email protected]>",
66
"Paul Colomiets <[email protected]>",
77
"Colin Kiegel <[email protected]>"]

src/rustup-dist/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-dist"
4-
version = "0.1.11-pre"
4+
version = "0.1.10"
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.1.11-pre" }
27-
error-chain = { path = "../error-chain", version = "0.1.11-pre" }
28-
rustup-mock = { path = "../rustup-mock", version = "0.1.11-pre" }
26+
rustup-utils = { path = "../rustup-utils", version = "0.1.10" }
27+
error-chain = { path = "../error-chain", version = "0.1.10" }
28+
rustup-mock = { path = "../rustup-mock", version = "0.1.10" }
2929

3030
[lib]
3131
name = "rustup_dist"

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.1.11-pre"
4+
version = "0.1.10"
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.1.11-pre" }
22+
rustup-utils = { path = "../rustup-utils", version = "0.1.10" }
2323
sha2 = "0.1.2"
2424

2525
[target."cfg(windows)".dependencies]

src/rustup-utils/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-utils"
4-
version = "0.1.11-pre"
4+
version = "0.1.10"
55
authors = [ "Diggory Blake <[email protected]>" ]
66
description = "multirust in rust - manage multiple rust installations with ease"
77

@@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
1414
[dependencies]
1515
rand = "0.3.11"
1616
scopeguard = "0.1.2"
17-
error-chain = { path = "../error-chain", version = "0.1.11-pre" }
17+
error-chain = { path = "../error-chain", version = "0.1.10" }
1818
libc = "0.2.0"
1919
native-tls = { git = "https://github.com/sfackler/rust-native-tls.git" }
2020
rustc-serialize = "0.3.19"

0 commit comments

Comments
 (0)