Skip to content

Commit

Permalink
Release version 0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Dec 7, 2023
2 parents 1881f9e + a91a005 commit 1e978cb
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.6
current_version = 0.7.7

[bumpversion:file:CITATION.cff]

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ 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.7.6\...v0.7.7[0.7.7] - 2023-12-07

=== Changed

* Reduce package size

== {compare-url}/v0.7.5\...v0.7.6[0.7.6] - 2023-11-30

=== Removed
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: 2023-11-30
version: 0.7.6
date-released: 2023-12-07
version: 0.7.7

# Project information.
abstract: The system exit codes as defined by <sysexits.h> for Rust
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

13 changes: 2 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[package]
name = "sysexits"
version = "0.7.6"
version = "0.7.7"
authors = ["Shun Sakai <sorairolake@protonmail.ch>"]
edition = "2021"
rust-version = "1.61.0"
Expand All @@ -16,16 +16,7 @@ repository = "https://github.com/sorairolake/sysexits-rs"
license = "Apache-2.0 OR MIT"
keywords = ["exitcode", "sysexits"]
categories = ["command-line-interface", "no-std", "os"]
exclude = [
"/.bumpversion.cfg",
"/.bumpversion.cfg.license",
"/.github",
"/CITATION.cff",
"/clippy.toml",
"/examples",
"/justfile",
"/rustfmt.toml",
]
include = ["/LICENSES", "/README.md", "/src"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
sysexits = "0.7.6"
sysexits = "0.7.7"
```

### Example
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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.7.6/")]
#![doc(html_root_url = "https://docs.rs/sysexits/0.7.7/")]
#![no_std]
#![cfg_attr(doc_cfg, feature(doc_auto_cfg, doc_cfg))]
// Lint levels of rustc.
Expand Down

0 comments on commit 1e978cb

Please sign in to comment.