Skip to content

Commit

Permalink
Merge pull request #538 from brson/bump
Browse files Browse the repository at this point in the history
Bump version to 0.2.0
  • Loading branch information
alexcrichton authored Jun 21, 2016
2 parents 553faa1 + 9bb6843 commit 57f335a
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 28 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# 0.2.0

* [Indicate correct path to remove in multirust upgrade instructions](https://github.com/rust-lang-nursery/rustup.rs/pull/518).
* [Bring back optional hyper with proxy support](https://github.com/rust-lang-nursery/rustup.rs/pull/532).
* ['default' and 'update' heuristics for bare triples](https://github.com/rust-lang-nursery/rustup.rs/pull/516).
* [Change upstream via $RUSTUP_DIST_SERVER](https://github.com/rust-lang-nursery/rustup.rs/pull/521).
* [Fail with a nicer error message if /tmp is mounted noexec](https://github.com/rust-lang-nursery/rustup.rs/pull/523).
* [Remove printfs from ~/.cargo/env](https://github.com/rust-lang-nursery/rustup.rs/pull/527).
* [Reduce margin in installer text to 79 columns](https://github.com/rust-lang-nursery/rustup.rs/pull/526).
* [Fix typos](https://github.com/rust-lang-nursery/rustup.rs/pull/519).
* [Fix missing curly braces in error-chain docs](https://github.com/rust-lang-nursery/rustup.rs/pull/522).
* [Fix downloads of builds without v2 manifests](https://github.com/rust-lang-nursery/rustup.rs/pull/515).
* [Explain toolchains in `help install`](https://github.com/rust-lang-nursery/rustup.rs/pull/496).
* [Compile on stable Rust](https://github.com/rust-lang-nursery/rustup.rs/pull/476).
* [Fix spelling mistakes](https://github.com/rust-lang-nursery/rustup.rs/pull/489).
* [Fix the toolchain command synonyms](https://github.com/rust-lang-nursery/rustup.rs/pull/477).
* [Configurable host triples](https://github.com/rust-lang-nursery/rustup.rs/pull/421).
* [Use a .toml file to store settings](https://github.com/rust-lang-nursery/rustup.rs/pull/420).
* [Point PATH to toolchain/bin on Windows](https://github.com/rust-lang-nursery/rustup.rs/pull/402).
* [Remove extra '.' in docs](https://github.com/rust-lang-nursery/rustup.rs/pull/472).

Contributors: Alex Crichton, benaryorg, Benedikt Reinartz, Boutin,
Michael, Brian Anderson, Diggory Blake, Erick Tryzelaar, Ivan
Nejgebauer, Jeremiah Peschka, Josh Stone, Knight, mdinger, Ryan Kung,
Tad Hardesty

# 0.1.12

* [Don't install when multirust metadata exists](https://github.com/rust-lang-nursery/rustup.rs/pull/456).
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustup"
version = "0.1.12"
version = "0.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "multirust in rust - manage multiple rust installations with ease"

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

[dependencies]
rustup-dist = { path = "src/rustup-dist", version = "0.1.12" }
rustup-utils = { path = "src/rustup-utils", version = "0.1.12" }
error-chain = { path = "src/error-chain", version = "0.1.12" }
rustup-dist = { path = "src/rustup-dist", version = "0.2.0" }
rustup-utils = { path = "src/rustup-utils", version = "0.2.0" }
error-chain = { path = "src/error-chain", version = "0.2.0" }
clap = "2.2.4"
regex = "0.1.41"
url = "1.1.0"
Expand All @@ -43,7 +43,7 @@ user32-sys = "0.1.2"
kernel32-sys = "0.2.1"

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

[lib]
Expand Down
2 changes: 1 addition & 1 deletion src/error-chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "error-chain"
version = "0.1.12"
version = "0.2.0"
authors = [ "Brian Anderson <banderson@mozilla.com>",
"Paul Colomiets <paul@colomiets.name>",
"Colin Kiegel <kiegel@gmx.de>"]
Expand Down
8 changes: 4 additions & 4 deletions src/rustup-dist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustup-dist"
version = "0.1.12"
version = "0.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "Installation from a Rust distribution server"
build = "build.rs"
Expand All @@ -23,9 +23,9 @@ tempdir = "0.3.4"
walkdir = "0.1.5"
toml = "0.1.27"
sha2 = "0.1.2"
rustup-utils = { path = "../rustup-utils", version = "0.1.12" }
error-chain = { path = "../error-chain", version = "0.1.12" }
rustup-mock = { path = "../rustup-mock", version = "0.1.12" }
rustup-utils = { path = "../rustup-utils", version = "0.2.0" }
error-chain = { path = "../error-chain", version = "0.2.0" }
rustup-mock = { path = "../rustup-mock", version = "0.2.0" }

[target."cfg(windows)".dependencies]
winapi = "0.2.4"
Expand Down
4 changes: 2 additions & 2 deletions src/rustup-mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustup-mock"
version = "0.1.12"
version = "0.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "Test mocks for multirust"

Expand All @@ -19,7 +19,7 @@ tempdir = "0.3.4"
itertools = "0.4.1"
tar = "0.4.0"
toml = "0.1.27"
rustup-utils = { path = "../rustup-utils", version = "0.1.12" }
rustup-utils = { path = "../rustup-utils", version = "0.2.0" }
sha2 = "0.1.2"

[target."cfg(windows)".dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/rustup-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustup-utils"
version = "0.1.12"
version = "0.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "multirust in rust - manage multiple rust installations with ease"

Expand All @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
rand = "0.3.11"
scopeguard = "0.1.2"
error-chain = { path = "../error-chain", version = "0.1.12" }
error-chain = { path = "../error-chain", version = "0.2.0" }
libc = "0.2.0"
rustc-serialize = "0.3.19"
sha2 = "0.1.2"
Expand Down

0 comments on commit 57f335a

Please sign in to comment.