diff --git a/.github/release-body.md b/.github/release-body.md
index cd2db50..be03e66 100644
--- a/.github/release-body.md
+++ b/.github/release-body.md
@@ -1,17 +1,16 @@
-### 2022-12-25
+### 2023-01-03
### Chores
-+ dependencies updated, [1525b3150293015c0fb2f2161da463b21ac2694c], [8d539ab14809136d743c49d60779687fc8eeef6d], [1774217a8a657d261397d213e5ecee667cf3b6b1]
-+ Rust 1.66 linting, [bf9dcac7045c0d2314df147ec2744a3ad886564b]
++ dependencies updated, [9b09146aadae5727a5fee4de5fe0c1d70c581c22]
### Features
-+ Caching on github action, [a91c9aa45ffd5c998cd1b83d8e90d0912893c31f]
++ `install.sh` script added, for automated platform selection, download, and installation, [7a42eba6b0968314af40ff87bcc42d288f6860bc], [e0703b76a1a28cfe266f130a7f7dec92f1b5ad58]
### Fixes
-+ comment typo, [7899b773569fed86343a035d3023bf34297fdabb]
++ If a sort order is set, sort containers on every `update_stats()` execution, [cfdea77594e48c8c20a4d6e6c7ea31c9181361a1]
### Refactors
-+ remove_ansi() to single liner, [57c3a6c186b916faba24bf7b5cdbbda31d636a7e]
++ input sort executed in app_data struct `sort_by_header()`, [3cdc5fae02097628799209f371ae9292e513e76c]
see CHANGELOG.md for more details
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de96855..5219847 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,17 @@
+# v0.1.11
+### 2023-01-03
+
### Chores
-+ dependencies updated, [9b09146aadae5727a5fee4de5fe0c1d70c581c22]
++ dependencies updated, [9b09146a](https://github.com/mrjackwills/oxker/commit/9b09146aadae5727a5fee4de5fe0c1d70c581c22)
### Features
-+ `install.sh` script added, for automated platform selection, download, and installation, [7a42eba6b0968314af40ff87bcc42d288f6860bc], [e0703b76a1a28cfe266f130a7f7dec92f1b5ad58]
++ `install.sh` script added, for automated platform selection, download, and installation, [7a42eba6](https://github.com/mrjackwills/oxker/commit/7a42eba6b0968314af40ff87bcc42d288f6860bc), [e0703b76](https://github.com/mrjackwills/oxker/commit/e0703b76a1a28cfe266f130a7f7dec92f1b5ad58)
### Fixes
-+ If a sort order is set, sort containers on every `update_stats()` execution, [cfdea77594e48c8c20a4d6e6c7ea31c9181361a1]
++ If a sort order is set, sort containers on every `update_stats()` execution, [cfdea775](https://github.com/mrjackwills/oxker/commit/cfdea77594e48c8c20a4d6e6c7ea31c9181361a1)
### Refactors
-+ input sort executed in app_data struct `sort_by_header()`, [3cdc5fae02097628799209f371ae9292e513e76c]
++ input sort executed in app_data struct `sort_by_header()`, [3cdc5fae](https://github.com/mrjackwills/oxker/commit/3cdc5fae02097628799209f371ae9292e513e76c)
# v0.1.10
### 2022-12-25
diff --git a/Cargo.toml b/Cargo.toml
index 7c6aa3a..5eb5908 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oxker"
-version = "0.1.10"
+version = "0.1.11"
edition = "2021"
authors = ["Jack Wills "]
description = "A simple tui to view & control docker containers"
diff --git a/src/app_data/mod.rs b/src/app_data/mod.rs
index b61970d..8b92466 100644
--- a/src/app_data/mod.rs
+++ b/src/app_data/mod.rs
@@ -462,7 +462,7 @@ impl AppData {
}
// need to benchmark this?
if self.get_sorted().is_some() {
- self.sort_containers();
+ self.sort_containers();
}
}