From 9aae7530b528c3bd3ded7181923eeb829b671020 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Mon, 22 Jan 2024 10:35:51 +0100
Subject: [PATCH] chore: release and publish to npm new version 3.55.1

---
 CHANGELOG.md             | 17 ++++++++++++++---
 package.json             |  2 +-
 source/types/version.mjs |  2 +-
 test/cases/monster.mjs   |  2 +-
 4 files changed, 17 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d6b456e1a..1f3c6a081 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,25 @@
 
-## 2024-01-22 
+## [3.55.1] - 2024-01-22
 
-- fix exception [#132](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/132)
-- add catch for exception [#133](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/133)
+### Bug Fixes
+
+- catch errors  [#133](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/133)
+- catch errors  [#133](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/133)
+- check parameter  [#132](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/132)
+### Changes
+
+- doc
+- lint + formatt
+- update nixos to 23-11
 
 ## [3.55.0] - 2023-11-29
 
 ### Add Features
 
 - various changes [#131](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/131)
+### Changes
+
+- release and publish to npm new version 3.55.0
 
 ## [3.54.0] - 2023-11-23
 
diff --git a/package.json b/package.json
index 4675d18fb..f32a1c21b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@schukai/monster",
-  "version": "3.55.0",
+  "version": "3.55.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 0c68c4de2..fe1b2eb71 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.55.0");
+	monsterVersion = new Version("3.55.1");
 
 	return monsterVersion;
 }
diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs
index 3fe4edc3f..7670d6961 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.55.0")
+        monsterVersion = new Version("3.55.1")
 
         let m = getMonsterVersion();
 
-- 
GitLab