Skip to content

Commit

Permalink
Release 0.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jan 5, 2022
1 parent 579485b commit 63aa3cc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
target
Cargo.lock
tmp

# For platform and editor specific settings, it is recommended to add to
# a global .gitignore file.
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

## [Unreleased]

## [0.5.10] - 2022-01-05

- Fix handling of combined short flags. ([#143](https://github.com/taiki-e/cargo-hack/pull/143))

- Support omitting lower bound of `--version-range` in all cargo versions. ([#144](https://github.com/taiki-e/cargo-hack/pull/144))
Expand Down Expand Up @@ -256,7 +258,8 @@ See [#89](https://github.com/taiki-e/cargo-hack/pull/89) for more.

Initial release

[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.5.9...HEAD
[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.5.10...HEAD
[0.5.10]: https://github.com/taiki-e/cargo-hack/compare/v0.5.9...v0.5.10
[0.5.9]: https://github.com/taiki-e/cargo-hack/compare/v0.5.8...v0.5.9
[0.5.8]: https://github.com/taiki-e/cargo-hack/compare/v0.5.7...v0.5.8
[0.5.7]: https://github.com/taiki-e/cargo-hack/compare/v0.5.6...v0.5.7
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-hack"
version = "0.5.9"
version = "0.5.10"
edition = "2018"
rust-version = "1.46"
license = "Apache-2.0 OR MIT"
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,16 @@ cargo-hack requires Cargo 1.26+.
You can download prebuilt binaries from the [Release page](https://github.com/taiki-e/cargo-hack/releases).
Prebuilt binaries are available for macOS, Linux (gnu and musl), and Windows (static executable).

<!-- omit in toc -->
### On GitHub Actions

You can use [taiki-e/install-action](https://github.com/taiki-e/install-action) to install prebuilt binaries on Linux, macOS, and Windows.
This makes the installation faster and may avoid the impact of [problems caused by upstream changes](https://github.com/tokio-rs/bytes/issues/506).

```yaml
- uses: taiki-e/install-action@cargo-hack
```

<!-- omit in toc -->
### Via Homebrew

Expand All @@ -418,16 +428,6 @@ paru -S cargo-hack

NOTE: AUR package is maintained by community, not maintainer of cargo-hack.

<!-- omit in toc -->
### On GitHub Actions

You can use [taiki-e/install-action](https://github.com/taiki-e/install-action) to install prebuilt binaries on Linux, macOS, and Windows.
This makes the installation faster and may avoid the impact of [problems caused by upstream changes](https://github.com/tokio-rs/bytes/issues/506).

```yaml
- uses: taiki-e/install-action@cargo-hack
```

## Related Projects

- [cargo-llvm-cov]: Cargo subcommand to easily use LLVM source-based code coverage.
Expand Down
1 change: 1 addition & 0 deletions tools/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,6 @@ fi

set -x

git push origin main
git tag "${tag}"
git push origin --tags

0 comments on commit 63aa3cc

Please sign in to comment.