Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): Update version to 0.8.2 #119

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1"
current_version = "0.8.2"

[[tool.bumpversion.files]]
filename = "CITATION.cff"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ 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.1\...HEAD[Unreleased]
== {compare-url}/v0.8.1\...v0.8.2[0.8.2] - 2024-09-22

=== Added

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-07-03
version: 0.8.1
date-released: 2024-09-22
version: 0.8.2

# Project information.
abstract: The system exit codes as defined by <sysexits.h> for Rust
Expand Down
10 changes: 5 additions & 5 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
Expand Up @@ -5,7 +5,7 @@

[package]
name = "sysexits"
version = "0.8.1"
version = "0.8.2"
authors = ["Shun Sakai <[email protected]>"]
edition = "2021"
rust-version = "1.74.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
sysexits = "0.8.2"
```

### Example
Expand Down
6 changes: 2 additions & 4 deletions RELEASE-CHECKLIST.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
// SPDX-License-Identifier: Apache-2.0 OR MIT

= Release Checklist
:project-url: https://github.com/sorairolake/sysexits-rs
:bump2version-pypi-url: https://pypi.org/project/bump2version/
:just-official-url: https://just.systems/
:crates-io-url: https://crates.io/

. Create the release branch (e.g. `release/v0.1.0`) from the `develop` branch,
Expand All @@ -16,7 +13,8 @@
. Update the release date in `link:CITATION.cff[]` to the current date
. Switch to the `master` branch, and merge the release branch into it (with
`--no-ff`)
. Make a GPG-signed tag (e.g. `git tag -s v0.1.0 -m "Release version 0.1.0"`)
. Make a GPG-signed tag (e.g.
`git tag -s v0.1.0 -m "chore(release): Release version 0.1.0"`)
. Switch to the `develop` branch, and merge the release branch into it (with
`--no-ff`)
. Push the `master` branch, the `develop` branch and the local tags
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
//! [`<sysexits.h>`]: https://man.openbsd.org/sysexits

#![cfg_attr(feature = "extended_io_error", feature(io_error_more))]
#![doc(html_root_url = "https://docs.rs/sysexits/0.8.1/")]
#![doc(html_root_url = "https://docs.rs/sysexits/0.8.2/")]
#![no_std]
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
// Lint levels of rustc.
Expand Down