Merge pull request #1041 from brson/bump

Bump
This commit is contained in:
Brian Anderson
2017-04-08 11:49:08 -07:00
committed by GitHub
7 changed files with 33 additions and 22 deletions

View File

@@ -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)

24
Cargo.lock generated
View File

@@ -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",

View File

@@ -1,7 +1,7 @@
[package]
name = "rustup"
version = "1.1.0"
version = "1.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
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"

View File

@@ -1,7 +1,7 @@
[package]
name = "rustup-dist"
version = "1.1.0"
version = "1.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
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"

View File

@@ -1,7 +1,7 @@
[package]
name = "rustup-mock"
version = "1.1.0"
version = "1.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
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"

View File

@@ -1,7 +1,7 @@
[package]
name = "rustup-utils"
version = "1.1.0"
version = "1.2.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "multirust in rust - manage multiple rust installations with ease"

View File

@@ -1,6 +1,6 @@
[package]
name = "rustup-win-installer"
version = "1.1.0"
version = "1.2.0"
authors = ["Patrick Reisert"]
build = "build.rs"