Skip to content

Commit

Permalink
release v0.2.1 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops authored Oct 23, 2024
1 parent 285befe commit 8b500a2
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 21 deletions.
46 changes: 29 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tegratop"
version = "0.2.0"
version = "0.2.1"
authors = ["Badr Badri <contact@pythops.com>"]
license = "GPL-3.0"
edition = "2021"
Expand All @@ -10,7 +10,7 @@ homepage = "https://github.com/pythops/tegratop"
repository = "https://github.com/pythops/tegratop"

[dependencies]
ratatui = "0.28"
ratatui = "0.29"
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
regex = "1"
Expand Down
4 changes: 4 additions & 0 deletions Release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.2.1 - 2024-10-23

- Use log on stderr

## v0.2 - 22/05/2024

### Fixed
Expand Down
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ fn main() -> AppResult<()> {
match tui.events.next()? {
Event::Tick => app.tick(),
Event::Key(key_event) => handle_key_events(key_event, &mut app)?,
Event::Mouse(_) => {}
Event::Resize(_, _) => {}
_ => {}
}
}
tui.exit()?;
Expand Down

0 comments on commit 8b500a2

Please sign in to comment.