diff --git a/CHANGELOG.md b/CHANGELOG.md
index f5d23d5ee584912f2e71f1fd65d71ddc21f75490..3b006c927f595152b405bae4f243fcaeae3d6414 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,10 @@
 
+## [3.62.0] - 2024-03-25
+
+### Add Features
+
+- add addRow, removeRow and copyRow [#175](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/175) [#176](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/176) [#177](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/177)
+
 ## [3.61.0] - 2024-03-24
 
 ### Add Features
@@ -6,6 +12,7 @@
 - new methods and tidy [#174](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/174) [#173](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/173)
 ### Changes
 
+- release and publish to npm new version 3.61.0
 - update tests and doc
 - events
 
diff --git a/package.json b/package.json
index 51b82ad34f1843b96eb1e311ad7c6f8bb804cbcc..fd3799f822aea0e75aa2e9be2ac9435c26cd9d42 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@schukai/monster",
-  "version": "3.61.0",
+  "version": "3.62.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 b8abb9a52c21018d44c87db19c1d3076dc51a7c8..0b8dd62744c86ee2a2a405f9f02ef691141f62d5 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.61.0");
+	monsterVersion = new Version("3.62.0");
 
 	return monsterVersion;
 }
diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs
index 3113d362eca5c5069ef8bba4fb7042acf186a908..ca689fc763cc510e6a3614bd2343e1e2b990c7c7 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.61.0")
+        monsterVersion = new Version("3.62.0")
 
         let m = getMonsterVersion();