Skip to content

Commit

Permalink
Merge pull request #1022 from foresterre/releas/0.16.2
Browse files Browse the repository at this point in the history
Release 0.16.2
  • Loading branch information
foresterre authored Oct 9, 2024
2 parents c8c8413 + dab61f9 commit f1d7ca7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ the [discussions section](https://github.com/foresterre/cargo-msrv/discussions).

## Unreleased

## [0.16.2] - 2024-10-10

### Fixed

#### Infra

* Fix release pipeline for `x86_64-unknown-linux-musl` binaries

[0.16.2]: https://github.com/foresterre/cargo-msrv/compare/v0.16.1...v0.16.2

## [0.16.1] - 2024-10-09

### Added
Expand Down
6 changes: 3 additions & 3 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,6 +1,6 @@
[package]
name = "cargo-msrv"
version = "0.16.1"
version = "0.16.2"
authors = ["Martijn Gribnau <[email protected]>"]
description = "Find your minimum supported Rust version (MSRV)!"
license = "Apache-2.0 OR MIT"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This crate can assist you in finding the Minimum Supported Rust Version for a cr
In this readme you'll find everything to get you started. You can find more detailed explanations in the
[cargo-msrv book](https://foresterre.github.io/cargo-msrv/index.html).

###
###

- 📜 [A short history](#a-short-history)
- 💿 [Install](#install)
Expand Down Expand Up @@ -72,7 +72,7 @@ _An [excerpt](https://foresterre.github.io/posts/puzzle-sharing-declarative-args
>- `is_compatible(Rust 1.3.0)` returns `true`
>- `is_compatible(Rust 1.2.0)` returns `false` ❌ ("Duration is not stable")
>- `is_compatible(Rust 1.1.0)` returns `false`
>- `is_compatible(Rust 1.0.0)` returns false ❌
>- `is_compatible(Rust 1.0.0)` returns `false`
>
>Since we only care about the _minimal_ Rust version, you could have stopped searching after compiling Rust 1.2.0; Rust
> 1.3.0 was the earliest released Rust version which worked.
Expand Down Expand Up @@ -101,14 +101,14 @@ _An [excerpt](https://foresterre.github.io/posts/puzzle-sharing-declarative-args

| cargo | supported | command |
|-------------|-----------|-----------------------------------------------------------------------------------------------|
| stable | 💚 | `$ cargo install --git https://github.com/foresterre/cargo-msrv.git --tag v0.16.1` cargo-msrv |
| stable | 💚 | `$ cargo install --git https://github.com/foresterre/cargo-msrv.git --tag v0.16.2` cargo-msrv |
| development | 💚 | `$ cargo install --git https://github.com/foresterre/cargo-msrv.git` cargo-msrv |

#### [cargo-binstall](https://github.com/cargo-bins/cargo-binstall)

| cargo | supported | command |
|-------------|-----------|-------------------------------------------------------------|
| stable | 💚 | `$ cargo binstall --version 0.16.1 --no-confirm cargo-msrv` |
| stable | 💚 | `$ cargo binstall --version 0.16.2 --no-confirm cargo-msrv` |
| development || |

#### Arch Linux [extra repository](https://archlinux.org/packages/extra/x86_64/cargo-msrv/)
Expand Down

0 comments on commit f1d7ca7

Please sign in to comment.