From a503392b7fb6e23d02add4e53f20ab47372687ba Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Fri, 3 Nov 2023 18:47:25 +0100
Subject: [PATCH] chore: release and publish to npm new version 3.52.0

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 64e9b9ac7..d6bec3878 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,20 @@
 
+## [3.52.0] - 2023-11-01
+
+### Add Features
+
+- integrate components, test, example and code [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127)
+- integrate components in monster [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127)
+### Changes
+
+- documentation
+- update documentation
+- add aws doc update to tasks [#126](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/126)
+- code tidy and update web test
+- code lint
+- lint and format
+- code tidy
+
 ## [3.51.5] - 2023-11-01
 
 ### Bug Fixes
@@ -6,6 +22,7 @@
 - release process
 ### Changes
 
+- release and publish to npm new version 3.51.5
 - restore devDependencies
 - update release process
 - conversion of the repos to nix packagemanger [#125](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/125)
diff --git a/package.json b/package.json
index 0892c5ea3..b019eb7fb 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@schukai/monster",
-  "version": "4.0.0",
+  "version": "3.52.0",
   "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 72913e193..ac125841a 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("4.0.0");
+	monsterVersion = new Version("3.52.0");
 
 	return monsterVersion;
 }
diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs
index 29b912c7e..b232158cc 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("4.0.0")
+        monsterVersion = new Version("3.52.0")
 
         let m = getMonsterVersion();
 
-- 
GitLab