From 7f8293d3665c73a6a81f2950da4c5bdefad2d338 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Sat, 11 Nov 2023 19:35:17 +0100 Subject: [PATCH] chore: release and publish to npm new version 3.53.0 --- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- source/types/version.mjs | 2 +- test/cases/monster.mjs | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe735c2a9..7643e4ac3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,23 @@ +## [3.53.0] - 2023-11-11 + +### Add Features + +- new icons (css) [#130](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/130) +### Changes + +- tidy code +- tidy code + ## [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) +### Changes + +- release and publish to npm new version 3.52.1 ## [3.52.0] - 2023-11-03 diff --git a/package.json b/package.json index c40b0b9e6..e8365cae1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schukai/monster", - "version": "3.52.1", + "version": "3.53.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 59ecb9d70..8eb100ef7 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.1"); + monsterVersion = new Version("3.53.0"); return monsterVersion; } diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs index b7fec427b..659a1be09 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.1") + monsterVersion = new Version("3.53.0") let m = getMonsterVersion(); -- GitLab