Skip to content

Commit

Permalink
Merge pull request #611 from brson/next
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
brson authored Jul 22, 2016
2 parents ff82309 + dcd0671 commit 3171903
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 20 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# 0.4.0

* [Improve rustls CA certificate loading](https://github.com/rust-lang-nursery/rustup.rs/pull/585)
* [Detect ARMv7 CPUs without NEON extensions and treat as ARMv6](https://github.com/rust-lang-nursery/rustup.rs/pull/593)
* [Allow any toolchain to be specified as the default during rustup installation](https://github.com/rust-lang-nursery/rustup.rs/pull/586)
* [Add details about updating rustup to README](https://github.com/rust-lang-nursery/rustup.rs/pull/590)
* [Update libbacktrace to generate less filesystem thrashing on Windows](https://github.com/rust-lang-nursery/rustup.rs/pull/604)
* [Update gcc dep to fix building on MSVC](https://github.com/rust-lang-nursery/rustup.rs/pull/605)
* [Remove the multirust binary](https://github.com/rust-lang-nursery/rustup.rs/pull/606)
* [Use the env_proxy crate for proxy environment variable handling](https://github.com/rust-lang-nursery/rustup.rs/pull/598)
* [Set system-specific dynamic loader env var for command execution](https://github.com/rust-lang-nursery/rustup.rs/pull/600)
* [Hide telemetry command from top level help](https://github.com/rust-lang-nursery/rustup.rs/pull/601)
* [Add the "no-self-update" feature](https://github.com/rust-lang-nursery/rustup.rs/pull/602)
* [Update to error-chain 0.2.2](https://github.com/rust-lang-nursery/rustup.rs/pull/602)
* [Add HTTP proxy documentation to README](https://github.com/rust-lang-nursery/rustup.rs/pull/610)

Contributors: Alex Crichton, Brian Anderson, Ivan Nejgebauer, Jimmy
Cuadra, Martin Pool, Wesley Moore

# 0.3.0

* [Teach rustup to download manifests from the `/staging/` directory](https://github.com/rust-lang-nursery/rustup.rs/pull/579).
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

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

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

Expand Down Expand Up @@ -29,8 +29,8 @@ rustls-backend = ["download/rustls-backend"]
no-self-update = []

[dependencies]
rustup-dist = { path = "src/rustup-dist", version = "0.3.0" }
rustup-utils = { path = "src/rustup-utils", version = "0.3.0" }
rustup-dist = { path = "src/rustup-dist", version = "0.4.0" }
rustup-utils = { path = "src/rustup-utils", version = "0.4.0" }
download = { path = "src/download" }
error-chain = "0.2.1"
clap = "2.2.4"
Expand All @@ -55,7 +55,7 @@ user32-sys = "0.1.2"
kernel32-sys = "0.2.1"

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

[lib]
Expand Down
6 changes: 3 additions & 3 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.3.0"
version = "0.4.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.3.0" }
rustup-utils = { path = "../rustup-utils", version = "0.4.0" }
error-chain = "0.2.1"
rustup-mock = { path = "../rustup-mock", version = "0.3.0" }
rustup-mock = { path = "../rustup-mock", version = "0.4.0" }

[target."cfg(windows)".dependencies]
winapi = "0.2.8"
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.3.0"
version = "0.4.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.3.0" }
rustup-utils = { path = "../rustup-utils", version = "0.4.0" }
sha2 = "0.1.2"

[target."cfg(windows)".dependencies]
Expand Down
2 changes: 1 addition & 1 deletion 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.3.0"
version = "0.4.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "multirust in rust - manage multiple rust installations with ease"

Expand Down

0 comments on commit 3171903

Please sign in to comment.