Skip to content

Commit 3cafe10

Browse files
committed
release: 2.4.3
2 parents cc88a5b + 7042ce8 commit 3cafe10

23 files changed

+50
-50
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
RUSTFLAGS: "-D warnings"
3535

3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838
- uses: dtolnay/rust-toolchain@stable
3939
with:
4040
targets: ${{ matrix.target }}

.github/workflows/msrv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
RUSTFLAGS: "-D warnings"
3535

3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838
- uses: dtolnay/rust-toolchain@stable
3939
with:
4040
targets: ${{ matrix.target }}

CREDITS.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Project Dependencies
22
Package: fyi
3-
Version: 2.4.2
3+
Version: 2.4.3
44
Target: x86_64-unknown-linux-gnu
5-
Generated: 2025-12-11 19:41:55 UTC
5+
Generated: 2026-01-23 02:12:25 UTC
66

77
| Package | Version | Author(s) | License |
88
| ---- | ---- | ---- | ---- |
9-
| [**argyle**](https://github.com/Blobfolio/argyle) | 0.14.0 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
9+
| [**argyle**](https://github.com/Blobfolio/argyle) | 0.15.0 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1010
| [**dactyl**](https://github.com/Blobfolio/dactyl) | 0.13.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
11-
| [**fyi_ansi**](https://github.com/Blobfolio/fyi) | 2.4.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
12-
| [**fyi_msg**](https://github.com/Blobfolio/fyi) | 2.4.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
11+
| [**fyi_ansi**](https://github.com/Blobfolio/fyi) | 2.4.3 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
12+
| [**fyi_msg**](https://github.com/Blobfolio/fyi) | 2.4.3 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1313
| [tz-rs](https://github.com/x-hgg-x/tz-rs) | 0.7.1 | x-hgg-x | MIT OR Apache-2.0 |
14-
| [**utc2k**](https://github.com/Blobfolio/utc2k) | 0.18.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
14+
| [**utc2k**](https://github.com/Blobfolio/utc2k) | 0.19.0 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1515

1616
### Legend
1717

fyi/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"
3-
version = "2.4.2"
3+
version = "2.4.3"
44
license = "WTFPL"
55
authors = ["Josh Stoik <josh@blobfolio.com>"]
66
edition = "2024"
@@ -180,7 +180,7 @@ description = "The message!"
180180
subcommands = [ "confirm", "print", "aborted", "crunched", "debug", "done", "error", "found", "info", "notice", "review", "skipped", "success", "task", "warning" ]
181181

182182
[build-dependencies]
183-
argyle = "0.14.*"
183+
argyle = "0.15.*"
184184

185185
[build-dependencies.fyi_ansi]
186186
path = "../fyi_ansi"
@@ -190,7 +190,7 @@ features = [ "bin_kinds", "timestamps" ]
190190
path = "../fyi_msg"
191191

192192
[dependencies]
193-
argyle = "0.14.*"
193+
argyle = "0.15.*"
194194
dactyl = "0.13.*"
195195

196196
[dependencies.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.4.2"
3+
version = "2.4.3"
44
authors = ["Josh Stoik <josh@blobfolio.com>"]
55
edition = "2024"
66
rust-version = "1.90"

fyi_msg/Cargo.toml

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

2020
[dependencies.argyle]
21-
version = "0.14.*"
21+
version = "0.15.*"
2222
optional = true
2323

2424
[dependencies.dactyl]
@@ -30,7 +30,7 @@ version = "2.4.*"
3030
path = "../fyi_ansi"
3131

3232
[dependencies.signal-hook]
33-
version = "0.3.*"
33+
version = "0.4.*"
3434
default-features = false
3535
optional = true
3636

@@ -43,7 +43,7 @@ version = "0.2.*"
4343
optional = true
4444

4545
[dependencies.utc2k]
46-
version = "0.18.*"
46+
version = "0.19.*"
4747
features = [ "local" ]
4848
optional = true
4949

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" "December 2025" "fyi aborted v2.4.2" "User Commands"
1+
.TH "FYI ABORTED" "1" "January 2026" "fyi aborted v2.4.3" "User Commands"
22
.SH NAME
3-
ABORTED \- Manual page for fyi aborted v2.4.2.
3+
ABORTED \- Manual page for fyi aborted v2.4.3.
44
.SH DESCRIPTION
55
Aborted: Hello World
66
.SS USAGE:

release/man/fyi-blank.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI BLANK" "1" "December 2025" "fyi blank v2.4.2" "User Commands"
1+
.TH "FYI BLANK" "1" "January 2026" "fyi blank v2.4.3" "User Commands"
22
.SH NAME
3-
BLANK \- Manual page for fyi blank v2.4.2.
3+
BLANK \- Manual page for fyi blank v2.4.3.
44
.SH DESCRIPTION
55
Print blank line(s).
66
.SS USAGE:

release/man/fyi-confirm.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI CONFIRM" "1" "December 2025" "fyi confirm v2.4.2" "User Commands"
1+
.TH "FYI CONFIRM" "1" "January 2026" "fyi confirm v2.4.3" "User Commands"
22
.SH NAME
3-
CONFIRM \- Manual page for fyi confirm v2.4.2.
3+
CONFIRM \- Manual page for fyi confirm v2.4.3.
44
.SH DESCRIPTION
55
Ask a Yes/No question using the built\-in prefix "confirm".
66
.SS USAGE:

release/man/fyi-crunched.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI CRUNCHED" "1" "December 2025" "fyi crunched v2.4.2" "User Commands"
1+
.TH "FYI CRUNCHED" "1" "January 2026" "fyi crunched v2.4.3" "User Commands"
22
.SH NAME
3-
CRUNCHED \- Manual page for fyi crunched v2.4.2.
3+
CRUNCHED \- Manual page for fyi crunched v2.4.3.
44
.SH DESCRIPTION
55
Crunched: Hello World
66
.SS USAGE:

0 commit comments

Comments
 (0)