Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
b71469df8b | |||
6ccb5b2412 | |||
eeb9aed65a | |||
7d2efc1a78 | |||
aea84e9171 | |||
08010b773d |
2
.github/workflows/autotag-releases.yml
vendored
2
.github/workflows/autotag-releases.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
- name: Get version from tag
|
- name: Get version from tag
|
||||||
id: tag_name
|
id: tag_name
|
||||||
run: |
|
run: |
|
||||||
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/}
|
echo "current_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Create and push tags
|
- name: Create and push tags
|
||||||
run: |
|
run: |
|
||||||
|
21
CHANGELOG.md
21
CHANGELOG.md
@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.3.3] - 2022-10-13
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Switch from set-output to $GITHUB_OUTPUT to avoid warning
|
||||||
|
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
||||||
|
|
||||||
|
## [1.3.2] - 2022-09-15
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fix setting `$CARGO_HOME` to a valid path, in case rustup is installed from the internet.
|
||||||
|
Thanks to @nahsi for providing the fix.
|
||||||
|
|
||||||
|
## [1.3.1] - 2022-08-14
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Use the sparse-registry on nightly for faster access to the crate registry on nightly.
|
||||||
|
<https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862>
|
||||||
|
|
||||||
## [1.3.0] - 2022-07-30
|
## [1.3.0] - 2022-07-30
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -62,6 +62,9 @@ runs:
|
|||||||
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
|
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
|
||||||
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
|
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
|
||||||
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
||||||
|
# Enable faster sparse index on nightly
|
||||||
|
# https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862
|
||||||
|
echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: "Install Rust Problem Matcher"
|
- name: "Install Rust Problem Matcher"
|
||||||
run: echo "::add-matcher::${{ github.action_path }}/rust.json"
|
run: echo "::add-matcher::${{ github.action_path }}/rust.json"
|
||||||
@ -71,7 +74,7 @@ runs:
|
|||||||
run: |
|
run: |
|
||||||
if ! command -v rustup &> /dev/null ; then
|
if ! command -v rustup &> /dev/null ; then
|
||||||
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
|
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
|
||||||
echo "${CARGO_HOME:-~/.cargo}/bin" >> $GITHUB_PATH
|
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
|
||||||
fi
|
fi
|
||||||
if: runner.os != 'Windows'
|
if: runner.os != 'Windows'
|
||||||
shell: bash
|
shell: bash
|
||||||
|
Reference in New Issue
Block a user