From 93dbc614d1cc249e14a60f5a977b28658b9ad6dd Mon Sep 17 00:00:00 2001
From: Jack Wills <32690432+mrjackwills@users.noreply.github.com>
Date: Sat, 21 Jan 2023 22:20:40 +0000
Subject: [PATCH] chore: release v0.2.0
---
.github/release-body.md | 18 +++++++++++-------
CHANGELOG.md | 21 ++++++++++++---------
Cargo.toml | 2 +-
src/ui/mod.rs | 2 +-
4 files changed, 25 insertions(+), 18 deletions(-)
diff --git a/.github/release-body.md b/.github/release-body.md
index be03e66..e92a330 100644
--- a/.github/release-body.md
+++ b/.github/release-body.md
@@ -1,16 +1,20 @@
-### 2023-01-03
+### 2023-01-21
### Chores
-+ dependencies updated, [9b09146aadae5727a5fee4de5fe0c1d70c581c22]
++ dependencies updated, [8cd199db49186fad6ce432bb277e3a10f0a08d34], [d880b829c123dbe57deccadef97810e45c083737], [66d57c99558ca14d9593d6dbfd5b0e8e5d59055d], [33f9374908942f4a3b90be227fad94ca353cf351], [007d5d83d7f1b93e1e78777a4417b2740db706bd]
++ create_release.sh typos, [9a27d46a044452080144ee1367dc95886b10abf8]
++ dev container post create install cross, [2d253f034182741d434e4bac12317f24221d0d4a]
### Features
-+ `install.sh` script added, for automated platform selection, download, and installation, [7a42eba6b0968314af40ff87bcc42d288f6860bc], [e0703b76a1a28cfe266f130a7f7dec92f1b5ad58]
-
-### Fixes
-+ If a sort order is set, sort containers on every `update_stats()` execution, [cfdea77594e48c8c20a4d6e6c7ea31c9181361a1]
+**all potentially considered breaking changes**
++ store Logs in own struct, use a hashset to track timestamps, hopefully closes #11, [657ea2d751a71f05b17547b47c492d5676817336]
++ Spawn docker commands into own thread, can now execute multiple docker commands at the same time, [9ec43e124a62a80f4e78acba85fc3af5980ce260]
++ align memory columns correctly, minimum byte display value now `0.00 kB`, rather than `0 B`, closes #20, [bd7dfcd2c512a527d66a1388f90006988a487186], [51c580010a24de2427373795803936d498dc8cee]
### Refactors
-+ input sort executed in app_data struct `sort_by_header()`, [3cdc5fae02097628799209f371ae9292e513e76c]
++ main.rs tidy up, [97b89349dc2de275ca514a1e6420255a63d775e8]
++ derive Default for GuiState, [9dcd0509efeb464f58fb53d813bd78de2447949d]
++ param reduction, AtomicBool to Relaxed, [0350293de3c00c6e5e5d787b7596bb3413d1cda1]
see CHANGELOG.md for more details
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9183050..f7db59b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,18 +1,21 @@
+# v0.2.0
+### 2023-01-21
+
### Chores
-+ dependencies updated, [8cd199db49186fad6ce432bb277e3a10f0a08d34], [d880b829c123dbe57deccadef97810e45c083737], [66d57c99558ca14d9593d6dbfd5b0e8e5d59055d], [33f9374908942f4a3b90be227fad94ca353cf351], [007d5d83d7f1b93e1e78777a4417b2740db706bd]
-+ create_release.sh typos, [9a27d46a044452080144ee1367dc95886b10abf8]
-+ dev container post create install cross, [2d253f034182741d434e4bac12317f24221d0d4a]
++ dependencies updated, [8cd199db](https://github.com/mrjackwills/oxker/commit/8cd199db49186fad6ce432bb277e3a10f0a08d34), [d880b829](https://github.com/mrjackwills/oxker/commit/d880b829c123dbe57deccadef97810e45c083737), [66d57c99](https://github.com/mrjackwills/oxker/commit/66d57c99558ca14d9593d6dbfd5b0e8e5d59055d), [33f93749](https://github.com/mrjackwills/oxker/commit/33f9374908942f4a3b90be227fad94ca353cf351), [007d5d83](https://github.com/mrjackwills/oxker/commit/007d5d83d7f1b93e1e78777a4417b2740db706bd)
++ create_release.sh typos, [9a27d46a](https://github.com/mrjackwills/oxker/commit/9a27d46a044452080144ee1367dc95886b10abf8)
++ dev container post create install cross, [2d253f03](https://github.com/mrjackwills/oxker/commit/2d253f034182741d434e4bac12317f24221d0d4a)
### Features
**all potentially considered breaking changes**
-+ store Logs in own struct, use a hashset to track timestamps, hopefully closes #11, [657ea2d751a71f05b17547b47c492d5676817336]
-+ Spawn docker commands into own thread, can now execute multiple docker commands at the same time, [9ec43e124a62a80f4e78acba85fc3af5980ce260]
-+ align memory columns correctly, minimum byte display value now `0.00 kB`, rather than `0 B`, closes #20, [bd7dfcd2c512a527d66a1388f90006988a487186], [51c580010a24de2427373795803936d498dc8cee]
++ store Logs in own struct, use a hashset to track timestamps, hopefully closes [#11](https://github.com/mrjackwills/oxker/issues/11), [657ea2d7](https://github.com/mrjackwills/oxker/commit/657ea2d751a71f05b17547b47c492d5676817336)
++ Spawn docker commands into own thread, can now execute multiple docker commands at the same time, [9ec43e12](https://github.com/mrjackwills/oxker/commit/9ec43e124a62a80f4e78acba85fc3af5980ce260)
++ align memory columns correctly, minimum byte display value now `0.00 kB`, rather than `0 B`, closes [#20](https://github.com/mrjackwills/oxker/issues/20), [bd7dfcd2](https://github.com/mrjackwills/oxker/commit/bd7dfcd2c512a527d66a1388f90006988a487186), [51c58001](https://github.com/mrjackwills/oxker/commit/51c580010a24de2427373795803936d498dc8cee)
### Refactors
-+ main.rs tidy up, [97b89349dc2de275ca514a1e6420255a63d775e8]
-+ derive Default for GuiState, [9dcd0509efeb464f58fb53d813bd78de2447949d]
-+ param reduction, AtomicBool to Relaxed, [0350293de3c00c6e5e5d787b7596bb3413d1cda1]
++ main.rs tidy up, [97b89349](https://github.com/mrjackwills/oxker/commit/97b89349dc2de275ca514a1e6420255a63d775e8)
++ derive Default for GuiState, [9dcd0509](https://github.com/mrjackwills/oxker/commit/9dcd0509efeb464f58fb53d813bd78de2447949d)
++ param reduction, AtomicBool to Relaxed, [0350293d](https://github.com/mrjackwills/oxker/commit/0350293de3c00c6e5e5d787b7596bb3413d1cda1)
# v0.1.11
### 2023-01-03
diff --git a/Cargo.toml b/Cargo.toml
index fc25d00..f01d9ef 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oxker"
-version = "0.1.11"
+version = "0.2.0"
edition = "2021"
authors = ["Jack Wills "]
description = "A simple tui to view & control docker containers"
diff --git a/src/ui/mod.rs b/src/ui/mod.rs
index d46ce7d..43ff005 100644
--- a/src/ui/mod.rs
+++ b/src/ui/mod.rs
@@ -62,7 +62,7 @@ pub async fn create_ui(
if let Err(err) = res {
println!("{err}");
}
- std::io::stdout().flush().unwrap_or(());
+ std::io::stdout().flush().unwrap_or(());
Ok(())
}