From e7c27b120b1ab0acf606c7b9684f502980410646 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Mon, 26 Feb 2024 14:29:51 +0100
Subject: [PATCH] chore: release and publish to npm new version 3.56.1

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 74a08ba05..a2ca56e53 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,10 @@
 
+## [3.56.1] - 2024-02-26
+
+### Bug Fixes
+
+- [3] is not the right way [#151](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/151)
+
 ## [3.56.0] - 2024-02-26
 
 ### Add Features
@@ -6,6 +12,7 @@
 - update datatable controls [#150](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/150) [#149](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/149) [#148](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/148) [#147](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/147) [#146](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/146) [#145](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/145)
 ### Changes
 
+- release and publish to npm new version 3.56.0
 - format
 - format
 - [#144](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/144)
diff --git a/package.json b/package.json
index 53af83a2a..7b9ac622f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@schukai/monster",
-  "version": "3.56.0",
+  "version": "3.56.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 831cd464b..05b232cd0 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.56.0");
+	monsterVersion = new Version("3.56.1");
 
 	return monsterVersion;
 }
diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs
index 07e48d9ed..4572125e9 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.56.0")
+        monsterVersion = new Version("3.56.1")
 
         let m = getMonsterVersion();
 
-- 
GitLab