Skip to content

Commit

Permalink
Bump version to 0.4.4
Browse files Browse the repository at this point in the history
Changelog:

a69d398 Ugly workaround for float overflow when computing CPU% of PID
9c9bd05 Forbid compilation on non-Linux target_os
53515f5 Update nix and other deps
7e738f0 Sort processes with 1..=4 keys instead of F1..=F4
2dacc2e Fix clippy lints, run rustfmt
c903d4c Fix compilation on aarch64 target

Signed-off-by: Manos Pitsidianakis <[email protected]>
  • Loading branch information
epilys committed Nov 15, 2024
1 parent a69d398 commit 8f41896
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
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.

14 changes: 6 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@
[package]
name = "bb"
version = "0.4.3"
authors = ["Manos Pitsidianakis <[email protected]>"]
version = "0.4.4"
authors = ["Manos Pitsidianakis <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
description = "clean simple fast process viewer"
homepage = "https://nessuent.xyz/bb.html"
homepage = "https://nessuent.net/bb.html"
repository = "https://github.com/epilys/bb.git"
categories = ["command-line-utilities", ]
keywords = ["process", "processes", "top", "ps"]
edition = "2018"
build = "build.rs"

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

[[bin]]
name = "bb"
path = "src/main.rs"

[dependencies]
cassowary = "^0.3.0"
crossbeam = "0.8.4"
libc = "0.2.62"
nix = "0.20.2"
signal-hook = "0.1.12"
signal-hook-registry = "1.2.0"
termion = "1.5.3"
libc = "0.2.62"
unicode-segmentation = "1.2.1"
nix = "0.20.2"
cassowary = "^0.3.0"

[profile.release]
opt-level = 'z' # Optimize for size.
Expand Down

0 comments on commit 8f41896

Please sign in to comment.