Skip to content

Commit 57f335a

Browse files
authored
Merge pull request #538 from brson/bump
Bump version to 0.2.0
2 parents 553faa1 + 9bb6843 commit 57f335a

File tree

7 files changed

+54
-28
lines changed

7 files changed

+54
-28
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# 0.2.0
2+
3+
* [Indicate correct path to remove in multirust upgrade instructions](https://github.com/rust-lang-nursery/rustup.rs/pull/518).
4+
* [Bring back optional hyper with proxy support](https://github.com/rust-lang-nursery/rustup.rs/pull/532).
5+
* ['default' and 'update' heuristics for bare triples](https://github.com/rust-lang-nursery/rustup.rs/pull/516).
6+
* [Change upstream via $RUSTUP_DIST_SERVER](https://github.com/rust-lang-nursery/rustup.rs/pull/521).
7+
* [Fail with a nicer error message if /tmp is mounted noexec](https://github.com/rust-lang-nursery/rustup.rs/pull/523).
8+
* [Remove printfs from ~/.cargo/env](https://github.com/rust-lang-nursery/rustup.rs/pull/527).
9+
* [Reduce margin in installer text to 79 columns](https://github.com/rust-lang-nursery/rustup.rs/pull/526).
10+
* [Fix typos](https://github.com/rust-lang-nursery/rustup.rs/pull/519).
11+
* [Fix missing curly braces in error-chain docs](https://github.com/rust-lang-nursery/rustup.rs/pull/522).
12+
* [Fix downloads of builds without v2 manifests](https://github.com/rust-lang-nursery/rustup.rs/pull/515).
13+
* [Explain toolchains in `help install`](https://github.com/rust-lang-nursery/rustup.rs/pull/496).
14+
* [Compile on stable Rust](https://github.com/rust-lang-nursery/rustup.rs/pull/476).
15+
* [Fix spelling mistakes](https://github.com/rust-lang-nursery/rustup.rs/pull/489).
16+
* [Fix the toolchain command synonyms](https://github.com/rust-lang-nursery/rustup.rs/pull/477).
17+
* [Configurable host triples](https://github.com/rust-lang-nursery/rustup.rs/pull/421).
18+
* [Use a .toml file to store settings](https://github.com/rust-lang-nursery/rustup.rs/pull/420).
19+
* [Point PATH to toolchain/bin on Windows](https://github.com/rust-lang-nursery/rustup.rs/pull/402).
20+
* [Remove extra '.' in docs](https://github.com/rust-lang-nursery/rustup.rs/pull/472).
21+
22+
Contributors: Alex Crichton, benaryorg, Benedikt Reinartz, Boutin,
23+
Michael, Brian Anderson, Diggory Blake, Erick Tryzelaar, Ivan
24+
Nejgebauer, Jeremiah Peschka, Josh Stone, Knight, mdinger, Ryan Kung,
25+
Tad Hardesty
26+
127
# 0.1.12
228

329
* [Don't install when multirust metadata exists](https://github.com/rust-lang-nursery/rustup.rs/pull/456).

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.12"
4+
version = "0.2.0"
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.12" }
22-
rustup-utils = { path = "src/rustup-utils", version = "0.1.12" }
23-
error-chain = { path = "src/error-chain", version = "0.1.12" }
21+
rustup-dist = { path = "src/rustup-dist", version = "0.2.0" }
22+
rustup-utils = { path = "src/rustup-utils", version = "0.2.0" }
23+
error-chain = { path = "src/error-chain", version = "0.2.0" }
2424
clap = "2.2.4"
2525
regex = "0.1.41"
2626
url = "1.1.0"
@@ -43,7 +43,7 @@ user32-sys = "0.1.2"
4343
kernel32-sys = "0.2.1"
4444

4545
[dev-dependencies]
46-
rustup-mock = { path = "src/rustup-mock", version = "0.1.12" }
46+
rustup-mock = { path = "src/rustup-mock", version = "0.2.0" }
4747
lazy_static = "0.1.15"
4848

4949
[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.12"
4+
version = "0.2.0"
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.12"
4+
version = "0.2.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.1.12" }
27-
error-chain = { path = "../error-chain", version = "0.1.12" }
28-
rustup-mock = { path = "../rustup-mock", version = "0.1.12" }
26+
rustup-utils = { path = "../rustup-utils", version = "0.2.0" }
27+
error-chain = { path = "../error-chain", version = "0.2.0" }
28+
rustup-mock = { path = "../rustup-mock", version = "0.2.0" }
2929

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

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.12"
4+
version = "0.2.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.1.12" }
22+
rustup-utils = { path = "../rustup-utils", version = "0.2.0" }
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.12"
4+
version = "0.2.0"
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.12" }
17+
error-chain = { path = "../error-chain", version = "0.2.0" }
1818
libc = "0.2.0"
1919
rustc-serialize = "0.3.19"
2020
sha2 = "0.1.2"

0 commit comments

Comments
 (0)