diff --git a/CHANGELOG.md b/CHANGELOG.md index ca333ac6..6e0598d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 1.2.0 + +* [Check ZDOTDIR when adding path to .zprofile](https://github.com/rust-lang-nursery/rustup.rs/pull/1038) +* [Update links and install page to include android support](https://github.com/rust-lang-nursery/rustup.rs/pull/1037) +* [Add bash completion guidance for macOS users](https://github.com/rust-lang-nursery/rustup.rs/pull/1035) +* [Support partial downloads](https://github.com/rust-lang-nursery/rustup.rs/pull/1020) +* [Don't crash if modifying multiple profile files](https://github.com/rust-lang-nursery/rustup.rs/pull/1040) + +Contributors: Brian Anderson, James Elford, Jason Dreyzehner, Marco A +L Barbosa, Wim Looman + # 1.1.0 * [Fix browser detection for Linux ppc64 and NetBSD](https://github.com/rust-lang-nursery/rustup.rs/pull/875) diff --git a/Cargo.lock b/Cargo.lock index 889c4145..36467268 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,8 +1,8 @@ [root] name = "rustup-win-installer" -version = "1.1.0" +version = "1.2.0" dependencies = [ - "rustup 1.1.0", + "rustup 1.2.0", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -534,7 +534,7 @@ dependencies = [ [[package]] name = "rustup" -version = "1.1.0" +version = "1.2.0" dependencies = [ "clap 2.18.0 (registry+https://github.com/rust-lang/crates.io-index)", "download 0.3.0", @@ -549,9 +549,9 @@ dependencies = [ "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.73 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "rustup-dist 1.1.0", - "rustup-mock 1.1.0", - "rustup-utils 1.1.0", + "rustup-dist 1.2.0", + "rustup-mock 1.2.0", + "rustup-utils 1.2.0", "scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -567,7 +567,7 @@ dependencies = [ [[package]] name = "rustup-dist" -version = "1.1.0" +version = "1.2.0" dependencies = [ "error-chain 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -576,8 +576,8 @@ dependencies = [ "libc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.73 (registry+https://github.com/rust-lang/crates.io-index)", - "rustup-mock 1.1.0", - "rustup-utils 1.1.0", + "rustup-mock 1.2.0", + "rustup-utils 1.2.0", "sha2 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "tar 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -591,12 +591,12 @@ dependencies = [ [[package]] name = "rustup-mock" -version = "1.1.0" +version = "1.2.0" dependencies = [ "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "rustup-utils 1.1.0", + "rustup-utils 1.2.0", "scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "tar 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -611,7 +611,7 @@ dependencies = [ [[package]] name = "rustup-utils" -version = "1.1.0" +version = "1.2.0" dependencies = [ "advapi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "download 0.3.0", diff --git a/Cargo.toml b/Cargo.toml index 5591fd3e..e89c0eb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustup" -version = "1.1.0" +version = "1.2.0" authors = [ "Diggory Blake " ] description = "multirust in rust - manage multiple rust installations with ease" @@ -32,8 +32,8 @@ no-self-update = [] msi-installed = [] [dependencies] -rustup-dist = { path = "src/rustup-dist", version = "1.1.0" } -rustup-utils = { path = "src/rustup-utils", version = "1.1.0" } +rustup-dist = { path = "src/rustup-dist" } +rustup-utils = { path = "src/rustup-utils" } download = { path = "src/download" } error-chain = "0.7.1" clap = "2.18.0" diff --git a/src/rustup-dist/Cargo.toml b/src/rustup-dist/Cargo.toml index 84b9cefc..9bd78834 100644 --- a/src/rustup-dist/Cargo.toml +++ b/src/rustup-dist/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustup-dist" -version = "1.1.0" +version = "1.2.0" authors = [ "Diggory Blake " ] description = "Installation from a Rust distribution server" build = "build.rs" @@ -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 = "1.1.0" } +rustup-utils = { path = "../rustup-utils" } error-chain = "0.7.1" -rustup-mock = { path = "../rustup-mock", version = "1.1.0" } +rustup-mock = { path = "../rustup-mock" } [target."cfg(windows)".dependencies] winapi = "0.2.8" diff --git a/src/rustup-mock/Cargo.toml b/src/rustup-mock/Cargo.toml index 1292164a..a2457905 100644 --- a/src/rustup-mock/Cargo.toml +++ b/src/rustup-mock/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustup-mock" -version = "1.1.0" +version = "1.2.0" authors = [ "Diggory Blake " ] description = "Test mocks for multirust" @@ -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 = "1.1.0" } +rustup-utils = { path = "../rustup-utils" } sha2 = "0.1.2" wait-timeout = "0.1.3" diff --git a/src/rustup-utils/Cargo.toml b/src/rustup-utils/Cargo.toml index 9eec87a5..7e4f2936 100644 --- a/src/rustup-utils/Cargo.toml +++ b/src/rustup-utils/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustup-utils" -version = "1.1.0" +version = "1.2.0" authors = [ "Diggory Blake " ] description = "multirust in rust - manage multiple rust installations with ease" diff --git a/src/rustup-win-installer/Cargo.toml b/src/rustup-win-installer/Cargo.toml index 278011ae..4fa1a570 100644 --- a/src/rustup-win-installer/Cargo.toml +++ b/src/rustup-win-installer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustup-win-installer" -version = "1.1.0" +version = "1.2.0" authors = ["Patrick Reisert"] build = "build.rs"