diff --git a/CHANGELOG.md b/CHANGELOG.md
index d6bec38784987990ea12de5189aab6c931206ec5..fe735c2a9af24213bd7539b8319635f46ea370d9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
 
-## [3.52.0] - 2023-11-01
+## [3.52.1] - 2023-11-05
+
+### Bug Fixes
+
+- only 10 tabs can be activated [#129](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/129)
+- fix some css bugs [#128](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/128)
+
+## [3.52.0] - 2023-11-03
 
 ### Add Features
 
@@ -7,6 +14,7 @@
 - integrate components in monster [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127)
 ### Changes
 
+- release and publish to npm new version 3.52.0
 - documentation
 - update documentation
 - add aws doc update to tasks [#126](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/126)
diff --git a/package.json b/package.json
index b019eb7fb9d3fcf5dda00ad1a801ca000a844211..b3a0227b930d8b14fe1f99f81b8135e49eb47723 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@schukai/monster",
-  "version": "3.52.0",
+  "version": "3.52.1",
   "description": "Monster is a simple library for creating fast, robust and lightweight websites.",
   "keywords": [
     "framework",
diff --git a/source/types/version.mjs b/source/types/version.mjs
index ac125841afebb951141779ed0c409198f361b7bd..59ecb9d7065d4a5c116319d20e6426f7da374317 100644
--- a/source/types/version.mjs
+++ b/source/types/version.mjs
@@ -152,7 +152,7 @@ function getMonsterVersion() {
 	}
 
 	/** don't touch, replaced by make with package.json version */
-	monsterVersion = new Version("3.52.0");
+	monsterVersion = new Version("3.52.1");
 
 	return monsterVersion;
 }
diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs
index b232158cc398e535a8fc0ab7e6fae2ec483fae75..b7fec427bb6322bcc9d42b949d484d3c6b2d2b79 100644
--- a/test/cases/monster.mjs
+++ b/test/cases/monster.mjs
@@ -7,7 +7,7 @@ describe('Monster', function () {
         let monsterVersion
 
         /** don“t touch, replaced by make with package.json version */
-        monsterVersion = new Version("3.52.0")
+        monsterVersion = new Version("3.52.1")
 
         let m = getMonsterVersion();