Skip to content

Releases: nick0602/bitrise-step-rustup

rustup-install 0.2.0

26 Sep 05:28
Compare
Choose a tag to compare

0.2.0 (2022-26-09) | Release post

BREAKING CHANGES

  • Due to the new rust_version parameter, use_rustup_nightly has been removed, and upgrading to 0.2.0-beta01 will automatically restore the stable version as default. Please use the Bitrise Step Editor or update the bitrise.yml file to make sure you're running the correct version.

New Features

  • Allow a specific Rust version to be installed directly via the rust_version parameter.

Performance Improvements

  • The installation process now installs the required version without installing the latest stable first, resulting in a faster setup.

Other Changes

  • Documentation updates.

rustup-install 0.1.1

08 Sep 20:57
Compare
Choose a tag to compare

0.1.1 (2022-09-08)

Bug Fixes

  • Fixed an issue wherein sourcing $HOME/.cargo/env would fail on Mac OS workers on the first run (#1) (thanks @dbainbridge).

rustup-install 0.1.0

09 Aug 11:59
Compare
Choose a tag to compare

0.1.0 (2022-08-09)

New Features

  • Silently source ~/.cargo/env at the beginning of the script to detect whether the toolchain has been restored from cache or not.
  • Enable cache_level to automatically export rustup and cargo paths to $BITRISE_CACHE_INCLUDE_PATHS if needed.
  • Append${HOME}/.cargo/bin via envman to $PATH at the end of the toolchain installation to make the toolchain available in the workflow.

Other Changes

  • Make the step less noisy at the end of the installation (introducing the input show_exported_envs).
  • Update input key naming according to Bitrise guidelines.
  • Wrap boolean to strings according to Bitrise guidelines.
  • Misc refactoring to better organize code.
  • Initial public build check on Bitrise.io upon every push to main.