diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a08ba057e4455782a52336ef298e3f6b0fcf17..a2ca56e53d77a62e107e5de312cb06fc1256befd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## [3.56.1] - 2024-02-26 + +### Bug Fixes + +- [3] is not the right way [#151](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/151) + ## [3.56.0] - 2024-02-26 ### Add Features @@ -6,6 +12,7 @@ - update datatable controls [#150](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/150) [#149](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/149) [#148](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/148) [#147](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/147) [#146](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/146) [#145](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/145) ### Changes +- release and publish to npm new version 3.56.0 - format - format - [#144](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/144) diff --git a/package.json b/package.json index 53af83a2a56bbd13d32bf113b5947629be4fa334..7b9ac622fea82bae44f5f7a7b13a487c23951e3e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schukai/monster", - "version": "3.56.0", + "version": "3.56.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 831cd464be631c41e0fe21d41a9f9a1c64712877..05b232cd08596859ee9df30f4aae92116cfbed47 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.56.0"); + monsterVersion = new Version("3.56.1"); return monsterVersion; } diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs index 07e48d9ed4c6a05978d18640e020d1d6bdfaaab0..4572125e94caa7d7200897d6b7f9815bc6b02daa 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.56.0") + monsterVersion = new Version("3.56.1") let m = getMonsterVersion();