rustup 1.1.0 is out. Upgrade with rustup self update
.
This is the first rustup release of the entire year, oh my! After being dormant for a while, this release includes a bunch of really nice fixes and improvements that have been trickling in.
This release adds RLS support in anticipation of RLS becoming part of the release very soon - after an upgrade you will have an rls
binary in .cargo/bin
, though there are no published toolchains that actually contain the rls
yet. I suspect that early adopters of RLS will run into confusion wrt which tool actually owns the rls
bin (cargo install
or rustup
). Certainly after upgrading rustup your rls will not be the rls but a rustup proxy - a fresh install of rls should get back to normal (until the next rustup upgrade). RLS is distributed by rustup because it dynamically links to rustc, and rustup knows how to make that work properly with rustup in a way cargo doesn't.
This release accepts multiple values to the rustup toolchain
, rustup component
and rustup target
commands, as in rustup component add rls rust-src rust-analysis
, which happens to be the invocation necessary to install a full working RLS in this release (once RLS is deployed to nightly). In the future rustup is expected to understand dependencies between toolchain components so only rustup component add rls
is required to pull in both rustc-src
and rust-analysis
. Thank you @durka for this feature.
This release also features a bunch of work on MIPS support, and I'm interested in hearing reports of whether it is working yet. Thanks @xen0n for pushing all that through, and I'm sorry it took so long to deploy.
There is some zsh-specific support for configuring PATH during install (thanks @polonez), which should go a small way toward making rustup's PATH configuration more reliable.
Beyond that there's lots of solid bug fixes. Thanks so much everybody who contributed.
1.1.0
- Fix browser detection for Linux ppc64 and NetBSD
- Update windows info
- Update to markdown 0.2
- Make running program extension case insensitive
- Add MIPS/s390x builders (with PPC64 compilation fixed)
- Fix two missing quotes of download error message
- www: MIPS support and cleanups
- Update release instructions
- Don't set low speed limits for curl
- Attempt to fix msi build. Pin appveyor nightlies
- Stop defaulting to $PATH searches when the binary can't be found and causing infinite recursion
- Upgrade openssl
- Improve browser detection and install instructions
- Add android support to rustup-init.sh
- Add fallback to symlink if hardlink fails
- readme: add tmp dir hint to Contributing section
- Fixed link to the list of supported platforms
- Update job object code to match Cargo's
- Added argument-documentation to rustup-init.sh
- Add/remove multiple toolchains
- Remove curl usage from appveyor
- Store downloaded files in a persistent directory until installation
- Add android build support
- Fix up a bunch of things indicated by clippy
- Ensure librssl compatibility
- RLS support
- Add 'docs' alias
- Use correct name for undefined linked toolchain invocation
- zsh install support
- Add/remove multiple components+targets
- Better error message when not running in a tty
- Indent help text
- Document installing to a custom location using CARGO_HOME and RUSTUP_HOME environment variables
- Aggressive remove_dir_all
Contributors: Aarthi Janakiraman, Alex Burka, Alex Crichton, bors,
Brian Anderson, Christian Muirhead, Christopher Armstrong, Daniel
Lockyer, Diggory Blake, Evgenii Pashkin, Grissiom, James Elford, Luca
Bruno, Lyuha, Manish Goregaokar, Marc-Antoine Perennou, Marco A L
Barbosa, Mikhail Pak, Nick Cameron, polonez, Sam Marshall, Steve
Klabnik, Tomáš Hübelbauer, topecongiro, Wang Xuerui