Skip to content

Commit 04fda5e

Browse files
authored
Merge pull request #996 from brson/bump
Bump
2 parents 605bb99 + ae8d1a9 commit 04fda5e

File tree

7 files changed

+68
-24
lines changed

7 files changed

+68
-24
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
# 1.1.0
2+
3+
* [Fix browser detection for Linux ppc64 and NetBSD](https://github.com/rust-lang-nursery/rustup.rs/pull/875)
4+
* [Update windows info](https://github.com/rust-lang-nursery/rustup.rs/pull/879)
5+
* [Update to markdown 0.2](https://github.com/rust-lang-nursery/rustup.rs/pull/896)
6+
* [Make running program extension case insensitive](https://github.com/rust-lang-nursery/rustup.rs/pull/887)
7+
* [Add MIPS/s390x builders (with PPC64 compilation fixed)](https://github.com/rust-lang-nursery/rustup.rs/pull/890)
8+
* [Fix two missing quotes of download error message](https://github.com/rust-lang-nursery/rustup.rs/pull/867)
9+
* [www: MIPS support and cleanups](https://github.com/rust-lang-nursery/rustup.rs/pull/866)
10+
* [Update release instructions](https://github.com/rust-lang-nursery/rustup.rs/pull/863)
11+
* [Don't set low speed limits for curl](https://github.com/rust-lang-nursery/rustup.rs/pull/914)
12+
* [Attempt to fix msi build. Pin appveyor nightlies](https://github.com/rust-lang-nursery/rustup.rs/pull/910)
13+
* [Stop defaulting to $PATH searches when the binary can't be found and causing infinite recursion](https://github.com/rust-lang-nursery/rustup.rs/pull/917)
14+
* [Upgrade openssl](https://github.com/rust-lang-nursery/rustup.rs/pull/934)
15+
* [Improve browser detection and install instructions](https://github.com/rust-lang-nursery/rustup.rs/pull/936)
16+
* [Add android support to rustup-init.sh](https://github.com/rust-lang-nursery/rustup.rs/pull/949)
17+
* [Add fallback to symlink if hardlink fails](https://github.com/rust-lang-nursery/rustup.rs/pull/951)
18+
* [readme: add tmp dir hint to Contributing section](https://github.com/rust-lang-nursery/rustup.rs/pull/985)
19+
* [Fixed link to the list of supported platforms](https://github.com/rust-lang-nursery/rustup.rs/pull/970)
20+
* [Update job object code to match Cargo's](https://github.com/rust-lang-nursery/rustup.rs/pull/984)
21+
* [Added argument-documentation to rustup-init.sh](https://github.com/rust-lang-nursery/rustup.rs/pull/962)
22+
* [Add/remove multiple toolchains](https://github.com/rust-lang-nursery/rustup.rs/pull/986)
23+
* [Remove curl usage from appveyor](https://github.com/rust-lang-nursery/rustup.rs/pull/1001)
24+
* [Store downloaded files in a persistent directory until installation](https://github.com/rust-lang-nursery/rustup.rs/pull/958)
25+
* [Add android build support](https://github.com/rust-lang-nursery/rustup.rs/pull/1000)
26+
* [Fix up a bunch of things indicated by clippy](https://github.com/rust-lang-nursery/rustup.rs/pull/1012)
27+
* [Ensure librssl compatibility](https://github.com/rust-lang-nursery/rustup.rs/pull/1011)
28+
* [RLS support](https://github.com/rust-lang-nursery/rustup.rs/pull/1005)
29+
* [Add 'docs' alias](https://github.com/rust-lang-nursery/rustup.rs/pull/1010)
30+
* [Use correct name for undefined linked toolchain invocation](https://github.com/rust-lang-nursery/rustup.rs/pull/1008)
31+
* [zsh install support](https://github.com/rust-lang-nursery/rustup.rs/pull/1013)
32+
* [Add/remove multiple components+targets](https://github.com/rust-lang-nursery/rustup.rs/pull/1016)
33+
* [Better error message when not running in a tty](https://github.com/rust-lang-nursery/rustup.rs/pull/1026)
34+
* [Indent help text](https://github.com/rust-lang-nursery/rustup.rs/pull/1019)
35+
* [Document installing to a custom location using CARGO_HOME and RUSTUP_HOME environment variables](https://github.com/rust-lang-nursery/rustup.rs/pull/1024)
36+
* [Aggressive remove_dir_all](https://github.com/rust-lang-nursery/rustup.rs/pull/1015)
37+
38+
Contributors: Aarthi Janakiraman, Alex Burka, Alex Crichton, bors,
39+
Brian Anderson, Christian Muirhead, Christopher Armstrong, Daniel
40+
Lockyer, Diggory Blake, Evgenii Pashkin, Grissiom, James Elford, Luca
41+
Bruno, Lyuha, Manish Goregaokar, Marc-Antoine Perennou, Marco A L
42+
Barbosa, Mikhail Pak, Nick Cameron, polonez, Sam Marshall, Steve
43+
Klabnik, Tomáš Hübelbauer, topecongiro, Wang Xuerui
44+
145
# 1.0.0
246

347
* [Statically link MSVC CRT](https://github.com/rust-lang-nursery/rustup.rs/pull/843)

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup"
4-
version = "1.0.0"
4+
version = "1.1.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "multirust in rust - manage multiple rust installations with ease"
77

@@ -32,8 +32,8 @@ no-self-update = []
3232
msi-installed = []
3333

3434
[dependencies]
35-
rustup-dist = { path = "src/rustup-dist", version = "1.0.0" }
36-
rustup-utils = { path = "src/rustup-utils", version = "1.0.0" }
35+
rustup-dist = { path = "src/rustup-dist", version = "1.1.0" }
36+
rustup-utils = { path = "src/rustup-utils", version = "1.1.0" }
3737
download = { path = "src/download" }
3838
error-chain = "0.7.1"
3939
clap = "2.18.0"
@@ -61,7 +61,7 @@ gcc = "0.3.28"
6161
psapi-sys = "0.1"
6262

6363
[dev-dependencies]
64-
rustup-mock = { path = "src/rustup-mock", version = "1.0.0" }
64+
rustup-mock = { path = "src/rustup-mock", version = "1.1.0" }
6565
lazy_static = "0.1.15"
6666

6767
[workspace]

src/rustup-dist/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup-dist"
4-
version = "1.0.0"
4+
version = "1.1.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "Installation from a Rust distribution server"
77
build = "build.rs"
@@ -23,9 +23,9 @@ tempdir = "0.3.4"
2323
walkdir = "0.1.5"
2424
toml = "0.1.27"
2525
sha2 = "0.1.2"
26-
rustup-utils = { path = "../rustup-utils", version = "1.0.0" }
26+
rustup-utils = { path = "../rustup-utils", version = "1.1.0" }
2727
error-chain = "0.7.1"
28-
rustup-mock = { path = "../rustup-mock", version = "1.0.0" }
28+
rustup-mock = { path = "../rustup-mock", version = "1.1.0" }
2929

3030
[target."cfg(windows)".dependencies]
3131
winapi = "0.2.8"

src/rustup-mock/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup-mock"
4-
version = "1.0.0"
4+
version = "1.1.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "Test mocks for multirust"
77

@@ -19,7 +19,7 @@ tempdir = "0.3.4"
1919
itertools = "0.4.1"
2020
tar = "0.4.0"
2121
toml = "0.1.27"
22-
rustup-utils = { path = "../rustup-utils", version = "1.0.0" }
22+
rustup-utils = { path = "../rustup-utils", version = "1.1.0" }
2323
sha2 = "0.1.2"
2424
wait-timeout = "0.1.3"
2525

src/rustup-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustup-utils"
4-
version = "1.0.0"
4+
version = "1.1.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "multirust in rust - manage multiple rust installations with ease"
77

src/rustup-win-installer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustup-win-installer"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
authors = ["Patrick Reisert"]
55
build = "build.rs"
66

@@ -10,4 +10,4 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
winapi = "0.2"
13-
rustup = { path = "../../", version = "1.0.0" }
13+
rustup = { path = "../../", version = "1.1.0" }

0 commit comments

Comments
 (0)