Skip to content

Commit 2ddb566

Browse files
committed
release: 2.1.2
2 parents de3b142 + d32b988 commit 2ddb566

26 files changed

+55
-49
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ jobs:
7272
cargo clippy --manifest-path fyi_msg/Cargo.toml --features=timestamps --target ${{ matrix.target }}
7373
cargo clippy --manifest-path fyi_msg/Cargo.toml --features=fitted,timestamps --target ${{ matrix.target }}
7474
cargo clippy --manifest-path fyi_msg/Cargo.toml --features=progress --target ${{ matrix.target }}
75+
cargo clippy --manifest-path fyi_msg/Cargo.toml --features=signals_sigwinch --target ${{ matrix.target }}
76+
cargo clippy --manifest-path fyi_msg/Cargo.toml --features=signals_sigint --target ${{ matrix.target }}
7577
cargo clippy --manifest-path fyi_msg/Cargo.toml --all-features --target ${{ matrix.target }}
7678
7779
- name: Tests (fyi_msg/Debug)
@@ -81,6 +83,8 @@ jobs:
8183
cargo test --manifest-path fyi_msg/Cargo.toml --features=timestamps --target ${{ matrix.target }}
8284
cargo test --manifest-path fyi_msg/Cargo.toml --features=fitted,timestamps --target ${{ matrix.target }}
8385
cargo test --manifest-path fyi_msg/Cargo.toml --features=progress --target ${{ matrix.target }}
86+
cargo test --manifest-path fyi_msg/Cargo.toml --features=signals_sigwinch --target ${{ matrix.target }}
87+
cargo test --manifest-path fyi_msg/Cargo.toml --features=signals_sigint --target ${{ matrix.target }}
8488
cargo test --manifest-path fyi_msg/Cargo.toml --all-features --target ${{ matrix.target }}
8589
8690
- name: Tests (fyi_msg/Release)
@@ -90,4 +94,6 @@ jobs:
9094
cargo test --manifest-path fyi_msg/Cargo.toml --release --features=timestamps --target ${{ matrix.target }}
9195
cargo test --manifest-path fyi_msg/Cargo.toml --release --features=fitted,timestamps --target ${{ matrix.target }}
9296
cargo test --manifest-path fyi_msg/Cargo.toml --release --features=progress --target ${{ matrix.target }}
97+
cargo test --manifest-path fyi_msg/Cargo.toml --release --features=signals_sigwinch --target ${{ matrix.target }}
98+
cargo test --manifest-path fyi_msg/Cargo.toml --release --features=signals_sigint --target ${{ matrix.target }}
9399
cargo test --manifest-path fyi_msg/Cargo.toml --release --all-features --target ${{ matrix.target }}

CREDITS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Project Dependencies
22
Package: fyi
3-
Version: 2.1.1
3+
Version: 2.1.2
44
Target: x86_64-unknown-linux-gnu
5-
Generated: 2025-05-17 03:38:09 UTC
5+
Generated: 2025-05-30 20:08:04 UTC
66

77
| Package | Version | Author(s) | License |
88
| ---- | ---- | ---- | ---- |
99
| [**argyle**](https://github.com/Blobfolio/argyle) | 0.12.3 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
10-
| [**dactyl**](https://github.com/Blobfolio/dactyl) | 0.10.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
11-
| [**fyi_ansi**](https://github.com/Blobfolio/fyi) | 2.1.1 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
12-
| [**fyi_msg**](https://github.com/Blobfolio/fyi) | 2.1.1 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
10+
| [**dactyl**](https://github.com/Blobfolio/dactyl) | 0.11.1 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
11+
| [**fyi_ansi**](https://github.com/Blobfolio/fyi) | 2.1.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
12+
| [**fyi_msg**](https://github.com/Blobfolio/fyi) | 2.1.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1313
| [tz-rs](https://github.com/x-hgg-x/tz-rs) | 0.7.0 | x-hgg-x | MIT OR Apache-2.0 |
1414
| [**utc2k**](https://github.com/Blobfolio/utc2k) | 0.13.0 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1515

fyi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyi"
3-
version = "2.1.1"
3+
version = "2.1.2"
44
license = "WTFPL"
55
authors = ["Josh Stoik <josh@blobfolio.com>"]
66
edition = "2024"
@@ -191,7 +191,7 @@ path = "../fyi_msg"
191191

192192
[dependencies]
193193
argyle = "0.12.*"
194-
dactyl = "0.10.*"
194+
dactyl = "0.11.*"
195195

196196
[dependencies.fyi_ansi]
197197
path = "../fyi_ansi"

fyi_ansi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyi_ansi"
3-
version = "2.1.1"
3+
version = "2.1.2"
44
authors = ["Josh Stoik <josh@blobfolio.com>"]
55
edition = "2024"
66
rust-version = "1.87"

fyi_ansi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<br>
55
[![crates.io](https://img.shields.io/crates/v/fyi_ansi.svg?style=flat-square&label=crates.io)](https://crates.io/crates/fyi_ansi)
66
[![ci](https://img.shields.io/github/actions/workflow/status/Blobfolio/fyi/ci.yaml?style=flat-square&label=ci)](https://github.com/Blobfolio/fyi/actions)
7-
[![deps.rs](https://deps.rs/repo/github/blobfolio/fyi/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/repo/github/blobfolio/fyi)<br>
7+
[![deps.rs](https://deps.rs/crate/fyi_ansi/latest/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/crate/fyi_ansi/)<br>
88
[![license](https://img.shields.io/badge/license-wtfpl-ff1493?style=flat-square)](https://en.wikipedia.org/wiki/WTFPL)
99

1010
This crate exports two simple compile-time ANSI formatting macros — `csi` and

fyi_ansi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br>
66
[![crates.io](https://img.shields.io/crates/v/fyi_ansi.svg?style=flat-square&label=crates.io)](https://crates.io/crates/fyi_ansi)
77
[![ci](https://img.shields.io/github/actions/workflow/status/Blobfolio/fyi/ci.yaml?style=flat-square&label=ci)](https://github.com/Blobfolio/fyi/actions)
8-
[![deps.rs](https://deps.rs/repo/github/blobfolio/fyi/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/repo/github/blobfolio/fyi)<br>
8+
[![deps.rs](https://deps.rs/crate/fyi_ansi/latest/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/crate/fyi_ansi/)<br>
99
[![license](https://img.shields.io/badge/license-wtfpl-ff1493?style=flat-square)](https://en.wikipedia.org/wiki/WTFPL)
1010
1111
This crate exports two simple compile-time ANSI formatting macros — [`csi`] and

fyi_msg/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyi_msg"
3-
version = "2.1.1"
3+
version = "2.1.2"
44
authors = ["Josh Stoik <josh@blobfolio.com>"]
55
edition = "2024"
66
rust-version = "1.87"
@@ -18,11 +18,11 @@ default-target = "x86_64-unknown-linux-gnu"
1818
targets = [ "x86_64-unknown-linux-gnu", "x86_64-apple-darwin" ]
1919

2020
[dependencies.dactyl]
21-
version = "0.10.*"
21+
version = "0.11.*"
2222
optional = true
2323

2424
[dependencies.fyi_ansi]
25-
version = "2.1.1"
25+
version = "2.1.2"
2626
path = "../fyi_ansi"
2727

2828
[dependencies.signal-hook]

fyi_msg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<br>
55
[![crates.io](https://img.shields.io/crates/v/fyi_msg.svg?style=flat-square&label=crates.io)](https://crates.io/crates/fyi_msg)
66
[![ci](https://img.shields.io/github/actions/workflow/status/Blobfolio/fyi/ci.yaml?style=flat-square&label=ci)](https://github.com/Blobfolio/fyi/actions)
7-
[![deps.rs](https://deps.rs/repo/github/blobfolio/fyi/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/repo/github/blobfolio/fyi)<br>
7+
[![deps.rs](https://deps.rs/crate/fyi_msg/latest/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/crate/fyi_msg/)<br>
88
[![license](https://img.shields.io/badge/license-wtfpl-ff1493?style=flat-square)](https://en.wikipedia.org/wiki/WTFPL)
99

1010
This crate contains the objects providing the heart of the [FYI command line application](https://github.com/blobfolio/fyi), namely `Msg`, a simple struct for status-like messages that can be easily printed to `STDOUT` or `STDERR`.

fyi_msg/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br>
66
[![crates.io](https://img.shields.io/crates/v/fyi_msg.svg?style=flat-square&label=crates.io)](https://crates.io/crates/fyi_msg)
77
[![ci](https://img.shields.io/github/actions/workflow/status/Blobfolio/fyi/ci.yaml?style=flat-square&label=ci)](https://github.com/Blobfolio/fyi/actions)
8-
[![deps.rs](https://deps.rs/repo/github/blobfolio/fyi/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/repo/github/blobfolio/fyi)<br>
8+
[![deps.rs](https://deps.rs/crate/fyi_msg/latest/status.svg?style=flat-square&label=deps.rs)](https://deps.rs/crate/fyi_msg/)<br>
99
[![license](https://img.shields.io/badge/license-wtfpl-ff1493?style=flat-square)](https://en.wikipedia.org/wiki/WTFPL)
1010
1111
This crate contains the objects providing the heart of the [FYI command line application](https://github.com/blobfolio/fyi), namely [`Msg`], a simple struct for status-like messages that can be easily printed to `STDOUT` or `STDERR`.

release/man/fyi-aborted.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI ABORTED" "1" "May 2025" "fyi aborted v2.1.1" "User Commands"
1+
.TH "FYI ABORTED" "1" "May 2025" "fyi aborted v2.1.2" "User Commands"
22
.SH NAME
3-
ABORTED \- Manual page for fyi aborted v2.1.1.
3+
ABORTED \- Manual page for fyi aborted v2.1.2.
44
.SH DESCRIPTION
55
Aborted: Hello World
66
.SS USAGE:

0 commit comments

Comments
 (0)