Skip to content

Commit

Permalink
Auto merge of #857 - brson:rustup-1, r=alexcrichton
Browse files Browse the repository at this point in the history
Bump version to 1.0

r? @alexcrichton
  • Loading branch information
bors committed Dec 16, 2016
2 parents 05709b9 + 42dd694 commit dcacbf6
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 37 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# 1.0.0

No significant changes from 0.7.0.

Contributors: Alex Crichton, Andrew Koroluk, Arch, benaryorg, Benedikt Reinartz,
Björn Steinbrink, bors, Boutin, Michael, Brian Anderson, Cam Swords, Chungmin
Park, Corey Farwell, Daniel Keep, David Salter, Diggory Blake, Drew Fisher,
Erick Tryzelaar, Florian Gilcher, geemili, Guillaume Fraux, Ivan Nejgebauer,
Ivan Petkov, Jacob Shaffer, Jake Goldsborough, James Lucas, Jeremiah Peschka,
jethrogb, Jian Zeng, Jimmy Cuadra, Joe Wilm, Jorge Aparicio, Josh Machol, Josh
Stone, Julien Blanchard, Kai Noda, Kai Roßwag, Kamal Marhubi, Kevin K, Kevin
Rauwolf, Kevin Yap, Knight, leonardo.yvens, llogiq, Marco A L Barbosa, Martin
Pool, Matt Brubeck, mdinger, Michael DeWitt, Mika Attila, Nate Mara, NODA, Kai,
Oliver Schneider, Patrick Reisert, Paul Padier, Ralph Giles, Raphael Cohn, Ri,
Ricardo Martins, Ryan Havar, Ryan Kung, Severen Redwood, Tad Hardesty, Taylor
Cramer, theindigamer, Tim Neumann, Tobias Bucher, trolleyman, Vadim
Petrochenkov, Virgile Andreani, V Jackson, Vladimir, Wang Xuerui, Wayne Warren,
Wesley Moore, Yasushi Abe, Y. T. Chung

# 0.7.0

* [Correctly "detect" host endianness on MIPS](https://github.com/rust-lang-nursery/rustup.rs/pull/802)
Expand Down
24 changes: 12 additions & 12 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.7.0"
version = "1.0.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "multirust in rust - manage multiple rust installations with ease"

Expand Down Expand Up @@ -32,8 +32,8 @@ no-self-update = []
msi-installed = []

[dependencies]
rustup-dist = { path = "src/rustup-dist", version = "0.7.0" }
rustup-utils = { path = "src/rustup-utils", version = "0.7.0" }
rustup-dist = { path = "src/rustup-dist", version = "1.0.0" }
rustup-utils = { path = "src/rustup-utils", version = "1.0.0" }
download = { path = "src/download" }
error-chain = "0.7.1"
clap = "2.18.0"
Expand All @@ -60,7 +60,7 @@ kernel32-sys = "0.2.1"
gcc = "0.3.28"

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

[workspace]
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ And it runs on all platforms Rust supports, including Windows.

[The Rust Programming Language]: https://www.rust-lang.org

**WARNING: This is beta software.**

* [Installation](#installation)
* [How rustup works](#how-rustup-works)
* [Keeping Rust up to date](#keeping-rust-up-to-date)
Expand Down
2 changes: 0 additions & 2 deletions src/rustup-cli/self_update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ r#"
You can uninstall at any time with `rustup self uninstall` and
these changes will be reverted.
*WARNING*: This is beta software.
"#
)};
}
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.7.0"
version = "1.0.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.7.0" }
rustup-utils = { path = "../rustup-utils", version = "1.0.0" }
error-chain = "0.7.1"
rustup-mock = { path = "../rustup-mock", version = "0.7.0" }
rustup-mock = { path = "../rustup-mock", version = "1.0.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.7.0"
version = "1.0.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.7.0" }
rustup-utils = { path = "../rustup-utils", version = "1.0.0" }
sha2 = "0.1.2"
wait-timeout = "0.1.3"

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.7.0"
version = "1.0.0"
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
description = "multirust in rust - manage multiple rust installations with ease"

Expand Down
4 changes: 2 additions & 2 deletions src/rustup-win-installer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustup-win-installer"
version = "0.7.0"
version = "1.0.0"
authors = ["Patrick Reisert"]
build = "build.rs"

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

[dependencies]
winapi = "0.2"
rustup = { path = "../../", version = "0.7.0" }
rustup = { path = "../../", version = "1.0.0" }
4 changes: 0 additions & 4 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@
</div>
</div>

<p id="warning">
WARNING: This is beta software.
</p>

<p>
Need help? <a href="https://client00.chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-beginners">Ask on #rust-beginners</a>.
</p>
Expand Down
5 changes: 0 additions & 5 deletions www/rustup.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,6 @@ hr {
line-height: 2rem;
}

#warning {
color: red;
font-weight: 500;
}

#about {
font-size: 16px;
line-height: 2em;
Expand Down

0 comments on commit dcacbf6

Please sign in to comment.