Skip to content

Commit

Permalink
Release version 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Jul 3, 2024
2 parents 61ef4f9 + 87bfbae commit d3408d2
Show file tree
Hide file tree
Showing 16 changed files with 241 additions and 71 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[tool.bumpversion]
current_version = "0.8.0"
current_version = "0.8.1"

[[tool.bumpversion.files]]
filename = "CITATION.cff"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- aarch64-apple-darwin
- x86_64-pc-windows-msvc
toolchain:
- 1.65.0 # MSRV
- 1.74.0 # MSRV
- stable
- nightly
include:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ All notable changes to this project will be documented in this file.
The format is based on https://keepachangelog.com/[Keep a Changelog], and this
project adheres to https://semver.org/[Semantic Versioning].

== {compare-url}/v0.8.0\...v0.8.1[0.8.1] - 2024-07-03

=== Changed

* Rewrite the examples using `clap` ({pull-request-url}/97[#97])
* Bump MSRV to 1.74.0 ({pull-request-url}/97[#97])

== {compare-url}/v0.7.14\...v0.8.0[0.8.0] - 2024-06-05

=== Added
Expand All @@ -23,6 +30,7 @@ project adheres to https://semver.org/[Semantic Versioning].
=== Changed

* Bump MSRV to 1.65.0 ({pull-request-url}/92[#92])
* Move `TryFromExitStatusError` to `error` ({pull-request-url}/93[#93])

== {compare-url}/v0.7.13\...v0.7.14[0.7.14] - 2024-05-19

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ cff-version: 1.2.0
message: Please cite this software using these meta data.

# Version information.
date-released: 2024-06-05
version: 0.8.0
date-released: 2024-07-03
version: 0.8.1

# Project information.
abstract: The system exit codes as defined by <sysexits.h> for Rust
Expand Down
158 changes: 139 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

[package]
name = "sysexits"
version = "0.8.0"
version = "0.8.1"
authors = ["Shun Sakai <sorairolake@protonmail.ch>"]
edition = "2021"
rust-version = "1.65.0"
rust-version = "1.74.0"
description = "The system exit codes as defined by <sysexits.h>"
documentation = "https://docs.rs/sysexits"
readme = "README.md"
Expand Down Expand Up @@ -42,8 +42,9 @@ required-features = ["default"]
[dependencies]

[dev-dependencies]
proptest = "1.4.0"
test-strategy = "0.3.1"
clap = { version = "4.5.8", features = ["derive"] }
proptest = "1.5.0"
test-strategy = "0.4.0"

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
sysexits = "0.8.0"
sysexits = "0.8.1"
```

### Example
Expand Down Expand Up @@ -75,7 +75,7 @@ See the [documentation][docs-url] for more details.

## Minimum supported Rust version

The minimum supported Rust version (MSRV) of this library is v1.65.0.
The minimum supported Rust version (MSRV) of this library is v1.74.0.

## Changelog

Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#
# SPDX-License-Identifier: Apache-2.0 OR MIT

msrv = "1.65.0"
msrv = "1.74.0"
Loading

0 comments on commit d3408d2

Please sign in to comment.