From f74e49e66f94b62d22718a975da6f5d9504e4285 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Sun, 5 Nov 2023 16:29:06 +0100 Subject: [PATCH] chore: release and publish to npm new version 3.52.1 --- CHANGELOG.md | 10 +++++++++- package.json | 2 +- source/types/version.mjs | 2 +- test/cases/monster.mjs | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6bec3878..fe735c2a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ -## [3.52.0] - 2023-11-01 +## [3.52.1] - 2023-11-05 + +### Bug Fixes + +- only 10 tabs can be activated [#129](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/129) +- fix some css bugs [#128](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/128) + +## [3.52.0] - 2023-11-03 ### Add Features @@ -7,6 +14,7 @@ - integrate components in monster [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127) ### Changes +- release and publish to npm new version 3.52.0 - documentation - update documentation - add aws doc update to tasks [#126](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/126) diff --git a/package.json b/package.json index b019eb7fb..b3a0227b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schukai/monster", - "version": "3.52.0", + "version": "3.52.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 ac125841a..59ecb9d70 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.52.0"); + monsterVersion = new Version("3.52.1"); return monsterVersion; } diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs index b232158cc..b7fec427b 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.52.0") + monsterVersion = new Version("3.52.1") let m = getMonsterVersion(); -- GitLab