Skip to content

Bump version number #1432

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
# 1.12.0

* [Add --path flag to 'rustup doc'][pr1453]
* [Add flag to "rustup show" for active-toolchain][pr1449]
* [Bring rustup.js and markup into alignment with rust-www][pr1437]
* [Add caret after first installation question][pr1435]
* [Add "rustup doc --reference"][pr1430]
* [Update Visual C++ Build Tools URL][pr1428]
* [Fix download indicator on OSes with newer ncurses package][pr1422]
* [Remove components if they don't exist anymore during update][pr1419]
* [Make sure rustup uses `utils::rename*` consistently][pr1389]
* [Do not try to get CWD if not required][pr1379]
* [Give correct error message if user tries to install an unavailable toolchain][pr1380]
* [Fall back to wget if curl is not installed][pr1373]
* [Added a link to all installers to the homepage][pr1370]
* [Display helpful advice even with -y][pr1290]
* [Use browser in BROWSER env if present for `doc` command][pr1289]
* [Update shebang to reflect bashisms][pr1269]

[pr1453]: https://github.com/rust-lang-nursery/rustup.rs/pull/1453
[pr1449]: https://github.com/rust-lang-nursery/rustup.rs/pull/1449
[pr1437]: https://github.com/rust-lang-nursery/rustup.rs/pull/1437
[pr1435]: https://github.com/rust-lang-nursery/rustup.rs/pull/1435
[pr1430]: https://github.com/rust-lang-nursery/rustup.rs/pull/1430
[pr1428]: https://github.com/rust-lang-nursery/rustup.rs/pull/1428
[pr1422]: https://github.com/rust-lang-nursery/rustup.rs/pull/1422
[pr1419]: https://github.com/rust-lang-nursery/rustup.rs/pull/1419
[pr1389]: https://github.com/rust-lang-nursery/rustup.rs/pull/1389
[pr1379]: https://github.com/rust-lang-nursery/rustup.rs/pull/1379
[pr1380]: https://github.com/rust-lang-nursery/rustup.rs/pull/1380
[pr1373]: https://github.com/rust-lang-nursery/rustup.rs/pull/1373
[pr1370]: https://github.com/rust-lang-nursery/rustup.rs/pull/1370
[pr1290]: https://github.com/rust-lang-nursery/rustup.rs/pull/1290
[pr1289]: https://github.com/rust-lang-nursery/rustup.rs/pull/1289
[pr1269]: https://github.com/rust-lang-nursery/rustup.rs/pull/1269

Contributors: Andrew Pennebaker, Who? Me?!, Matteo Bertini, mog422,
Kasper Møller Andersen, Thibault Delor, Justin Worthe, TitanSnow,
aimileus, Antonio Murdaca, Cyryl Płotnicki, Nick Cameron, Alex Crichton,
Kornel, Stuart Dootson, Pietro Albini, Diggory Blake, Yuji Nakao,
Johannes Hofmann, CrLF0710, Aaron Lee, Brian Anderson, Mateusz Mikuła,
Segev Finer, Dan Aloni, Joeri van Ruth

# 1.11.0

* [windows: detect architecture on website, update to matching arch][pr1354]
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustup"
version = "1.11.0"
version = "1.12.0"
authors = [ "Diggory Blake <[email protected]>" ]
description = "Manage multiple rust installations with ease"

Expand Down
2 changes: 1 addition & 1 deletion src/rustup-dist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustup-dist"
version = "1.11.0"
version = "1.12.0"
authors = [ "Diggory Blake <[email protected]>" ]
description = "Installation from a Rust distribution server"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion src/rustup-mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustup-mock"
version = "1.11.0"
version = "1.12.0"
authors = [ "Diggory Blake <[email protected]>" ]
description = "Test mocks for rustup"

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 = "1.11.0"
version = "1.12.0"
authors = [ "Diggory Blake <[email protected]>" ]
description = "Utility functions for rustup"

Expand Down
2 changes: 1 addition & 1 deletion 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 = "1.11.0"
version = "1.12.0"
authors = ["Patrick Reisert"]
build = "build.rs"

Expand Down