diff --git a/CHANGELOG.md b/CHANGELOG.md index f5a671a..dbc5e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/robertpsoane/ducker/compare/v0.0.3...v0.0.4) - 2024-07-06 + +### Added +- add ability for more detailed summary of images +- add ability for more detailed container description and stats ([#17](https://github.com/robertpsoane/ducker/pull/17)) + +### Other +- describe uses a trait object +- *(deps)* bump clap from 4.5.6 to 4.5.8 +- *(pages)* simplify page lifecycle removing the redundant concept of visibility + ## [0.0.3](https://github.com/robertpsoane/ducker/compare/v0.0.2...v0.0.3) - 2024-06-30 ### Added diff --git a/Cargo.lock b/Cargo.lock index ef3c4f6..88c3cec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -594,7 +594,7 @@ dependencies = [ [[package]] name = "ducker" -version = "0.0.3" +version = "0.0.4" dependencies = [ "ansi-to-tui", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index e43e537..3cb475c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "ducker" description = "A slightly quackers Docker TUI based on k9s 🦆" authors = ["Robert Soane"] -version = "0.0.3" +version = "0.0.4" homepage = "http://github.com/robertpsoane/ducker" repository = "http://github.com/robertpsoane/ducker" edition = "2021"