diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8cca552da..dee83fa94 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,35 @@
# CHANGELOG
+
+## [0.8.1](https://github.com/dyrector-io/dyrectorio/compare/0.8.0...0.8.1) (2023-09-07)
+
+### Doc
+
+* update readme ([#802](https://github.com/dyrector-io/dyrectorio/issues/802))
+
+### Feat
+
+* add explicit port routing & go tools bump ([#808](https://github.com/dyrector-io/dyrectorio/issues/808))
+* **(crux-ui):** useEffect submitRef update ([#806](https://github.com/dyrector-io/dyrectorio/issues/806))
+* service category label for platform containers & hide containers based on category ([#807](https://github.com/dyrector-io/dyrectorio/issues/807))
+* oneshot agent install tokens ([#796](https://github.com/dyrector-io/dyrectorio/issues/796))
+
+### Fix
+
+* **(crux):** floating promises ([#814](https://github.com/dyrector-io/dyrectorio/issues/814))
+* missing translations in lists ([#811](https://github.com/dyrector-io/dyrectorio/issues/811))
+* **(web):** validate container name duplication ([#812](https://github.com/dyrector-io/dyrectorio/issues/812))
+* port range exposing and various bugfixes ([#809](https://github.com/dyrector-io/dyrectorio/issues/809))
+* **(ci):** fix the trailing whitespace error ([#804](https://github.com/dyrector-io/dyrectorio/issues/804))
+
+### Refactor
+
+* **(web):** optimize ws client routing ([#810](https://github.com/dyrector-io/dyrectorio/issues/810))
+
+
-## [0.8.0](https://github.com/dyrector-io/dyrectorio/compare/0.7.0...0.8.0) (2023-08-30)
+## [0.8.0](https://github.com/dyrector-io/dyrectorio/compare/0.7.0...0.8.0) (2023-08-31)
### Chore
diff --git a/golang/internal/version/version.go b/golang/internal/version/version.go
index 50af0e5e5..c467e8cfb 100644
--- a/golang/internal/version/version.go
+++ b/golang/internal/version/version.go
@@ -6,7 +6,7 @@ import (
var (
// Version represents the version of the application
- Version = "0.8.0"
+ Version = "0.8.1"
// CommitHash is the hash of the commit used for the build
CommitHash = "n/a"
// BuildTimestamp represents the timestamp when the build was created
diff --git a/web/crux-ui/package-lock.json b/web/crux-ui/package-lock.json
index 420cd90f9..b292e97d2 100644
--- a/web/crux-ui/package-lock.json
+++ b/web/crux-ui/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "crux-ui",
- "version": "0.8.0",
+ "version": "0.8.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "crux-ui",
- "version": "0.8.0",
+ "version": "0.8.1",
"license": "Apache-2.0",
"dependencies": {
"@ory/kratos-client": "^0.13.1",
diff --git a/web/crux-ui/package.json b/web/crux-ui/package.json
index 4a9776c50..4e74c5980 100644
--- a/web/crux-ui/package.json
+++ b/web/crux-ui/package.json
@@ -1,6 +1,6 @@
{
"name": "crux-ui",
- "version": "0.8.0",
+ "version": "0.8.1",
"description": "Open-source delivery platform that helps developers to deliver applications efficiently by simplifying software releases and operations in any environment.",
"author": "dyrector.io",
"private": true,
diff --git a/web/crux/package-lock.json b/web/crux/package-lock.json
index 11a1ada6c..d218870fb 100644
--- a/web/crux/package-lock.json
+++ b/web/crux/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "crux",
- "version": "0.8.0",
+ "version": "0.8.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "crux",
- "version": "0.8.0",
+ "version": "0.8.1",
"license": "Apache-2.0",
"dependencies": {
"@grpc/grpc-js": "^1.9.0",
diff --git a/web/crux/package.json b/web/crux/package.json
index ce0db2edf..161f93285 100644
--- a/web/crux/package.json
+++ b/web/crux/package.json
@@ -1,6 +1,6 @@
{
"name": "crux",
- "version": "0.8.0",
+ "version": "0.8.1",
"description": "Open-source delivery platform that helps developers to deliver applications efficiently by simplifying software releases and operations in any environment.",
"author": "dyrector.io",
"private": true,
diff --git a/web/crux/src/shared/const.ts b/web/crux/src/shared/const.ts
index 32c65fa24..e6725e69c 100644
--- a/web/crux/src/shared/const.ts
+++ b/web/crux/src/shared/const.ts
@@ -19,7 +19,7 @@ export const CONTAINER_DELETE_TIMEOUT = 1000 // millis
export const DEFAULT_CONTAINER_LOG_TAIL = 40
// NOTE(@m8vago): This should be incremented, when a new release includes a proto file change
-const AGENT_PROTO_COMPATIBILITY_MINIMUM_VERSION = '0.8.0'
+const AGENT_PROTO_COMPATIBILITY_MINIMUM_VERSION = '0.8.1'
export const AGENT_SUPPORTED_MINIMUM_VERSION = coerce(AGENT_PROTO_COMPATIBILITY_MINIMUM_VERSION)
export const API_CREATED_LOCATION_HEADERS = {