From 25e7ff7d7ed34dbcbe1074d4b0945c0010ddd109 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Mon, 1 Apr 2024 19:19:18 +0200 Subject: [PATCH] chore: release and publish to npm new version 3.63.3 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- source/types/version.mjs | 2 +- test/cases/monster.mjs | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13a28578f..09a6da019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ +## [3.63.3] - 2024-04-01 + +### Bug Fixes + +- include state-button [#183](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/183) +### Changes + +- update devenv +- update issue templates +- update template and create showroom section + ## [3.63.2] - 2024-03-28 ### Bug Fixes @@ -6,6 +17,7 @@ - colors and more, add igrnore change to savebutton [#181](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/181) [#180](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/180) ### Changes +- release and publish to npm new version 3.63.2 - reorganize playground ## [3.63.1] - 2024-03-27 diff --git a/package.json b/package.json index 18f6f36c7..f2ab77d0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schukai/monster", - "version": "3.63.2", + "version": "3.63.3", "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 15b2d253a..b7f7a2568 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.63.2"); + monsterVersion = new Version("3.63.3"); return monsterVersion; } diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs index f1c4acb33..be657857f 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.63.2") + monsterVersion = new Version("3.63.3") let m = getMonsterVersion(); -- GitLab