Skip to content

Commit

Permalink
Merge pull request #61 from sugyan/feature/update-ratatui
Browse files Browse the repository at this point in the history
Update ratatui to 0.27
  • Loading branch information
gin66 authored Jun 26, 2024
2 parents 96b6fb5 + ff58a24 commit 775c759
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.11.2:
- update ratatui to 0.27

0.11.1:
- one line error report for demo example, if feature flag crossterm or termion not given
- use cargo readme and test in github build
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tui-logger"
version = "0.11.1"
version = "0.11.2"
authors = ["Jochen Kiemes <jochen@kiemes.de>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ travis-ci = { repository = "gin66/tui-logger" }
[dependencies]
log = "0.4"
chrono = { version = "^0.4.20", default-features = false, features = ["clock"] }
ratatui = { version = "0.26", default-features = false}
ratatui = { version = "0.27", default-features = false}
tracing = {version = "0.1.37", optional = true}
tracing-subscriber = {version = "0.3", optional = true}
lazy_static = "1.0"
Expand All @@ -25,8 +25,8 @@ parking_lot = "0.12"
slog = { version = "2.7.0", optional = true }

[dev-dependencies]
# the crate is compatible with ratatui >=0.25.0, but the demo uses features from 0.26.0
ratatui = { version = "0.26", default-features = false}
# the crate is compatible with ratatui >=0.25.0, but the demo uses features from 0.27.0
ratatui = { version = "0.27", default-features = false}
anyhow = "1.0.79"
env_logger = "0.11.1"
termion = {version = "3.0.0" }
Expand Down

0 comments on commit 775c759

Please sign in to comment.