Auto merge of #1104 - brson:bump, r=brson

Bump version to 1.3
This commit is contained in:
bors
2017-05-09 15:37:02 +00:00
7 changed files with 32 additions and 17 deletions

View File

@@ -1,3 +1,18 @@
# 1.3.0
* [Add armv8l support](https://github.com/rust-lang-nursery/rustup.rs/pull/1055)
* [Update curl crate](https://github.com/rust-lang-nursery/rustup.rs/pull/1101)
* [Fix inadvertent dependency on bash](https://github.com/rust-lang-nursery/rustup.rs/pull/1048)
* [Update openssl-probe to 0.1.1](https://github.com/rust-lang-nursery/rustup.rs/pull/1061)
* [zsh completions cleanup](https://github.com/rust-lang-nursery/rustup.rs/pull/1068)
* [Alias 'rustup toolchain uninstall' to 'rustup uninstall'](https://github.com/rust-lang-nursery/rustup.rs/pull/1073)
* [Fix a typo in PowerShell completion script help](https://github.com/rust-lang-nursery/rustup.rs/pull/1076)
* [Enforce timeouts for reading rustc version](https://github.com/rust-lang-nursery/rustup.rs/pull/1071)
* [Fix OpenSSL linkage by using the final install-directory in the build](https://github.com/rust-lang-nursery/rustup.rs/pull/1065)
Contributors: bors, Brian Anderson, Diggory Blake, Greg Alexander, James Elford,
Jordan Hiltunen, Justin Noah, Kang Seonghoon, Kevin K, Marco A L Barbosa
# 1.2.0
* [Check ZDOTDIR when adding path to .zprofile](https://github.com/rust-lang-nursery/rustup.rs/pull/1038)

24
Cargo.lock generated
View File

@@ -1,8 +1,8 @@
[root]
name = "rustup-win-installer"
version = "1.2.0"
version = "1.3.0"
dependencies = [
"rustup 1.2.0",
"rustup 1.3.0",
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -534,7 +534,7 @@ dependencies = [
[[package]]
name = "rustup"
version = "1.2.0"
version = "1.3.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.2.0",
"rustup-mock 1.2.0",
"rustup-utils 1.2.0",
"rustup-dist 1.3.0",
"rustup-mock 1.3.0",
"rustup-utils 1.3.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)",
@@ -568,7 +568,7 @@ dependencies = [
[[package]]
name = "rustup-dist"
version = "1.2.0"
version = "1.3.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)",
@@ -577,8 +577,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.2.0",
"rustup-utils 1.2.0",
"rustup-mock 1.3.0",
"rustup-utils 1.3.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)",
@@ -592,12 +592,12 @@ dependencies = [
[[package]]
name = "rustup-mock"
version = "1.2.0"
version = "1.3.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.2.0",
"rustup-utils 1.3.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)",
@@ -612,7 +612,7 @@ dependencies = [
[[package]]
name = "rustup-utils"
version = "1.2.0"
version = "1.3.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.2.0"
version = "1.3.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "multirust in rust - manage multiple rust installations with ease"

View File

@@ -1,7 +1,7 @@
[package]
name = "rustup-dist"
version = "1.2.0"
version = "1.3.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "Installation from a Rust distribution server"
build = "build.rs"

View File

@@ -1,7 +1,7 @@
[package]
name = "rustup-mock"
version = "1.2.0"
version = "1.3.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "Test mocks for multirust"

View File

@@ -1,7 +1,7 @@
[package]
name = "rustup-utils"
version = "1.2.0"
version = "1.3.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.2.0"
version = "1.3.0"
authors = ["Patrick Reisert"]
build = "build.rs"