diff --git a/.github/release-body.md b/.github/release-body.md
index a78efaf..e97c63f 100644
--- a/.github/release-body.md
+++ b/.github/release-body.md
@@ -1,9 +1,20 @@
-### 2024-03-31
+### 2024-05-07
### Chores
-+ .devcontainer updated, [82a7f84ed94a9bad6cc5fe078bfadbda65c8ea8f]
-+ Rust 1.77 linting, [dfd4948d9c43cfbffb091c303d3cb2a05522047a]
-+ platform.sh formatted, [7953e68f3067ac3c9d4fe67e9f934c25036c0833]
-+ dependencies updated, [8e6c3ca6d83768f043923ccf6836397beaaae639]
++ Dependencies updated, [07e293ac2ce2e7deb5735154fcdb24ef83a19b67], [27d72c547e738f6816cd4b353ac881e454a0be70]
+
+### Features
++ Allow closing dialogs with `Escape`, thanks [JCQuintas](https://github.com/JCQuintas), [0e4c3ceab933458d40b54d5fcff7e6cf7a3ab315]
+
+### Fixes
++ correct header display when terminal width changes, [4628803b2b9fe63522d033b192763ed6ff5b57dd]
+
+### Refactors
++ use tokio CancellationToken, [0631a73ec27530f8fcc88988a0a02ca75e32c5ba]
++ impl AsyncTTY, [bf33776e9a61684032a80d22d995ba7e0446620e]
+
+### Tests
++ reduced header section test, [aa0947405393db2c306e86986183514cbc0f5a75]
++ test_draw_blocks_help() with add esc text, [ff839af4ef68193149d6456e70fee189228c4a44]
see CHANGELOG.md for more details
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 72de281..a132c75 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,19 +1,22 @@
+# v0.6.3
+### 2024-05-07
+
### Chores
-+ Dependencies updated, [07e293ac2ce2e7deb5735154fcdb24ef83a19b67], [27d72c547e738f6816cd4b353ac881e454a0be70]
++ Dependencies updated, [07e293ac](https://github.com/mrjackwills/oxker/commit/07e293ac2ce2e7deb5735154fcdb24ef83a19b67), [27d72c54](https://github.com/mrjackwills/oxker/commit/27d72c547e738f6816cd4b353ac881e454a0be70)
### Features
-+ Allow closing dialogs with `Escape`, thanks [JCQuintas](https://github.com/JCQuintas), [0e4c3ceab933458d40b54d5fcff7e6cf7a3ab315]
++ Allow closing dialogs with `Escape`, thanks [JCQuintas](https://github.com/JCQuintas), [0e4c3cea](https://github.com/mrjackwills/oxker/commit/0e4c3ceab933458d40b54d5fcff7e6cf7a3ab315)
### Fixes
-+ correct header display when terminal width changes, [4628803b2b9fe63522d033b192763ed6ff5b57dd]
++ correct header display when terminal width changes, [4628803b](https://github.com/mrjackwills/oxker/commit/4628803b2b9fe63522d033b192763ed6ff5b57dd)
### Refactors
-+ use tokio CancellationToken, [0631a73ec27530f8fcc88988a0a02ca75e32c5ba]
-+ impl AsyncTTY, [bf33776e9a61684032a80d22d995ba7e0446620e]
++ use tokio CancellationToken, [0631a73e](https://github.com/mrjackwills/oxker/commit/0631a73ec27530f8fcc88988a0a02ca75e32c5ba)
++ impl AsyncTTY, [bf33776e](https://github.com/mrjackwills/oxker/commit/bf33776e9a61684032a80d22d995ba7e0446620e)
### Tests
-+ reduced header section test, [aa0947405393db2c306e86986183514cbc0f5a75]
-+ test_draw_blocks_help() with add esc text, [ff839af4ef68193149d6456e70fee189228c4a44]
++ reduced header section test, [aa094740](https://github.com/mrjackwills/oxker/commit/aa0947405393db2c306e86986183514cbc0f5a75)
++ test_draw_blocks_help() with add esc text, [ff839af4](https://github.com/mrjackwills/oxker/commit/ff839af4ef68193149d6456e70fee189228c4a44)
# v0.6.2
### 2024-03-31
diff --git a/Cargo.lock b/Cargo.lock
index e3c64f2..ad757bc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -837,7 +837,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "oxker"
-version = "0.6.2"
+version = "0.6.3"
dependencies = [
"anyhow",
"bollard",
diff --git a/Cargo.toml b/Cargo.toml
index 8ea9987..47aecec 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oxker"
-version = "0.6.2"
+version = "0.6.3"
edition = "2021"
authors = ["Jack Wills "]
description = "A simple tui to view & control docker containers"