From 0ad9f755ba0e2f303e22b9d3198bb1bfab693b5b Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Sun, 17 Mar 2024 14:42:20 +0100
Subject: [PATCH] chore: release and publish to npm new version 3.58.0

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index a972c6212..9b1965b2b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,19 @@
 
+## [3.58.0] - 2024-03-17
+
+### Add Features
+
+- new select feature emptyValueIfNoOptions [#142](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/142)
+### Changes
+
+- update deploy script
+- lint code
+- build-webtest
+- lint code
+- code format
+- release and publish to npm new version 3.57.0
+- tests and more
+
 ## [3.57.0] - 2024-03-06
 
 ### Add Features
@@ -14,7 +29,6 @@
 - add arrowdown handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)  [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
 ### Changes
 
-- tests and more
 - tests and more
 - fix tests
 - updates [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
diff --git a/package.json b/package.json
index da3e640d5..2d6340a62 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@schukai/monster",
-  "version": "3.57.0",
+  "version": "3.58.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 01b5da959..e9082c6e6 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.57.0");
+	monsterVersion = new Version("3.58.0");
 
 	return monsterVersion;
 }
diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs
index 04e62d683..918721732 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.57.0")
+        monsterVersion = new Version("3.58.0")
 
         let m = getMonsterVersion();
 
-- 
GitLab