Skip to content

Commit

Permalink
release: 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Mar 3, 2024
2 parents 974b409 + f4fd772 commit d74645b
Show file tree
Hide file tree
Showing 18 changed files with 40 additions and 39 deletions.
6 changes: 3 additions & 3 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Project Dependencies
Package: fyi
Version: 0.13.1
Generated: 2024-02-23 18:17:18 UTC
Version: 0.13.2
Generated: 2024-03-03 20:24:08 UTC

| Package | Version | Author(s) | License |
| ---- | ---- | ---- | ---- |
| [argyle](https://github.com/Blobfolio/argyle) | 0.7.2 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
| [const_fn](https://github.com/taiki-e/const_fn) | 0.4.9 | | Apache-2.0 or MIT |
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.7.0 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
| [fyi_msg](https://github.com/Blobfolio/fyi) | 0.13.1 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
| [fyi_msg](https://github.com/Blobfolio/fyi) | 0.13.2 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
| [tz-rs](https://github.com/x-hgg-x/tz-rs) | 0.6.14 | x-hgg-x | Apache-2.0 or MIT |
| [utc2k](https://github.com/Blobfolio/utc2k) | 0.8.0 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
2 changes: 1 addition & 1 deletion fyi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyi"
version = "0.13.1"
version = "0.13.2"
license = "WTFPL"
authors = ["Blobfolio, LLC. <[email protected]>"]
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions fyi_msg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyi_msg"
version = "0.13.1"
version = "0.13.2"
authors = ["Blobfolio, LLC. <[email protected]>"]
edition = "2021"
rust-version = "1.72"
Expand Down Expand Up @@ -29,8 +29,8 @@ optional = true
version = "=0.6.7"
optional = true

[dependencies.term_size]
version = "=0.3.2"
[dependencies.terminal_size]
version = "=0.3.0"
optional = true

[dependencies.unicode-width]
Expand All @@ -44,7 +44,7 @@ optional = true

[dev-dependencies]
brunch = "0.5.*"
rayon = "1.8.*"
rayon = "1.9.*"

[[bench]]
name = "fm_buffer"
Expand Down Expand Up @@ -84,7 +84,7 @@ bin_kinds = []
fitted = [ "unicode-width" ]

# Make use of the "progless" bar.
progress = [ "ahash", "bytecount", "fitted", "term_size" ]
progress = [ "ahash", "bytecount", "fitted", "terminal_size" ]

# Add timestamp support to messages.
timestamps = [ "utc2k" ]
5 changes: 3 additions & 2 deletions fyi_msg/src/progress/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1309,9 +1309,10 @@ fn hash64(src: &[u8]) -> u64 {
/// Note: The width returned will be `1` less than the actual value to mitigate
/// any whitespace weirdness that might be lurking at the edge.
fn term_width() -> u8 {
term_size::dimensions().map_or(
use terminal_size::Width;
terminal_size::terminal_size().map_or(
0,
|(w, _)| u8::saturating_from(w.saturating_sub(1))
|(Width(w), _)| u8::saturating_from(w.saturating_sub(1))
)
}

Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-blank.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI BLANK" "1" "February 2024" "blank v0.13.1" "User Commands"
.TH "FYI BLANK" "1" "March 2024" "blank v0.13.2" "User Commands"
.SH NAME
blank \- Manual page for blank v0.13.1.
blank \- Manual page for blank v0.13.2.
.SH DESCRIPTION
Print blank line(s).
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-confirm.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI CONFIRM" "1" "February 2024" "confirm v0.13.1" "User Commands"
.TH "FYI CONFIRM" "1" "March 2024" "confirm v0.13.2" "User Commands"
.SH NAME
confirm \- Manual page for confirm v0.13.1.
confirm \- Manual page for confirm v0.13.2.
.SH DESCRIPTION
Ask a Yes/No question using the built\-in prefix "confirm".
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-crunched.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI CRUNCHED" "1" "February 2024" "crunched v0.13.1" "User Commands"
.TH "FYI CRUNCHED" "1" "March 2024" "crunched v0.13.2" "User Commands"
.SH NAME
crunched \- Manual page for crunched v0.13.1.
crunched \- Manual page for crunched v0.13.2.
.SH DESCRIPTION
Crunched: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-debug.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI DEBUG" "1" "February 2024" "debug v0.13.1" "User Commands"
.TH "FYI DEBUG" "1" "March 2024" "debug v0.13.2" "User Commands"
.SH NAME
debug \- Manual page for debug v0.13.1.
debug \- Manual page for debug v0.13.2.
.SH DESCRIPTION
Debug: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-done.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI DONE" "1" "February 2024" "done v0.13.1" "User Commands"
.TH "FYI DONE" "1" "March 2024" "done v0.13.2" "User Commands"
.SH NAME
done \- Manual page for done v0.13.1.
done \- Manual page for done v0.13.2.
.SH DESCRIPTION
Done: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-error.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI ERROR" "1" "February 2024" "error v0.13.1" "User Commands"
.TH "FYI ERROR" "1" "March 2024" "error v0.13.2" "User Commands"
.SH NAME
error \- Manual page for error v0.13.1.
error \- Manual page for error v0.13.2.
.SH DESCRIPTION
Error: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-info.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI INFO" "1" "February 2024" "info v0.13.1" "User Commands"
.TH "FYI INFO" "1" "March 2024" "info v0.13.2" "User Commands"
.SH NAME
info \- Manual page for info v0.13.1.
info \- Manual page for info v0.13.2.
.SH DESCRIPTION
Info: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-notice.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI NOTICE" "1" "February 2024" "notice v0.13.1" "User Commands"
.TH "FYI NOTICE" "1" "March 2024" "notice v0.13.2" "User Commands"
.SH NAME
notice \- Manual page for notice v0.13.1.
notice \- Manual page for notice v0.13.2.
.SH DESCRIPTION
Notice: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-print.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI PRINT" "1" "February 2024" "print v0.13.1" "User Commands"
.TH "FYI PRINT" "1" "March 2024" "print v0.13.2" "User Commands"
.SH NAME
print \- Manual page for print v0.13.1.
print \- Manual page for print v0.13.2.
.SH DESCRIPTION
Print a message without a prefix (or with a custom one).
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-review.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI REVIEW" "1" "February 2024" "review v0.13.1" "User Commands"
.TH "FYI REVIEW" "1" "March 2024" "review v0.13.2" "User Commands"
.SH NAME
review \- Manual page for review v0.13.1.
review \- Manual page for review v0.13.2.
.SH DESCRIPTION
Review: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-success.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI SUCCESS" "1" "February 2024" "success v0.13.1" "User Commands"
.TH "FYI SUCCESS" "1" "March 2024" "success v0.13.2" "User Commands"
.SH NAME
success \- Manual page for success v0.13.1.
success \- Manual page for success v0.13.2.
.SH DESCRIPTION
Success: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-task.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI TASK" "1" "February 2024" "task v0.13.1" "User Commands"
.TH "FYI TASK" "1" "March 2024" "task v0.13.2" "User Commands"
.SH NAME
task \- Manual page for task v0.13.1.
task \- Manual page for task v0.13.2.
.SH DESCRIPTION
Task: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi-warning.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI WARNING" "1" "February 2024" "warning v0.13.1" "User Commands"
.TH "FYI WARNING" "1" "March 2024" "warning v0.13.2" "User Commands"
.SH NAME
warning \- Manual page for warning v0.13.1.
warning \- Manual page for warning v0.13.2.
.SH DESCRIPTION
Warning: Hello World
.SS USAGE:
Expand Down
4 changes: 2 additions & 2 deletions release/man/fyi.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FYI" "1" "February 2024" "FYI v0.13.1" "User Commands"
.TH "FYI" "1" "March 2024" "FYI v0.13.2" "User Commands"
.SH NAME
FYI \- Manual page for fyi v0.13.1.
FYI \- Manual page for fyi v0.13.2.
.SH DESCRIPTION
A dead\-simple CLI status message printer for use in BASH scripts, etc.
.SS USAGE:
Expand Down

0 comments on commit d74645b

Please sign in to comment.