Skip to content

Commit

Permalink
merge release/v0.23 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
pamburus committed Jan 9, 2024
2 parents 4392186 + fb294cd commit 1782656
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [master]
branches: [master, release/*]
pull_request:
branches: [master]
branches: [master, release/*]

env:
CARGO_TERM_COLOR: always
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ categories = ["command-line-utilities"]
description = "Utility for viewing json-formatted log files."
keywords = ["cli", "human", "log"]
name = "hl"
version = "0.24.1"
version = "0.24.2"
edition = "2021"
build = "build.rs"

Expand Down
1 change: 1 addition & 0 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ impl App {
mem_usage -= entry.1.1.end - entry.1.1.start;
output.write_all(sync_indicator.value.as_bytes())?;
output.write_all(&entry.1.0[entry.1.1.clone()])?;
output.write_all(&[b'\n'])?;
}
}

Expand Down

0 comments on commit 1782656

Please sign in to comment.