diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a5258dc76e2e63983361d3c10c03d310b3c1e0..2b60d190812dadb172027a9ba21dd79247164ef8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,33 +3,22 @@ ### Add Features -- New control element ContextError -- The last used sorting for datatable is now also saved. - -### Changes - -- Default-Value by translation `<div data-monster-replace="path:content | i18n::value"></div>` -- The method `generateUniqueConfigKey` do not use hash values for keys -- The collapse control now calculates the height via clientHeight and no longer via scrollHeight -- The updater sleeps between updates to avoid too many updates - -### Bug Fixes - -- ContextHelp fixed - +- various changes [#131](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/131) ## [3.54.0] - 2023-11-23 ### Add Features - new closeOnSelect feature +### Changes + +- release and publish to npm new version 3.54.0 ## [3.53.0] - 2023-11-11 ### Add Features - new icons (css) [#130](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/130) - ### Changes - release and publish to npm new version 3.53.0 @@ -42,7 +31,6 @@ - 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 diff --git a/package.json b/package.json index 4ea5a5387cdf805631c64677b599cd67b34a1a44..4675d18fb014a3bef1bd444a6b3c8788c33f63d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schukai/monster", - "version": "3.54.0", + "version": "3.55.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 03a8ac49a69dd7d00914396ceda0ee3e818435b5..0c68c4de22f9a525d61f60ae796b0cbc53ef0b39 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.54.0"); + monsterVersion = new Version("3.55.0"); return monsterVersion; } diff --git a/test/cases/monster.mjs b/test/cases/monster.mjs index fd5d77e005d00b3f7c592c40a4c737bddd624f94..3fe4edc3f14ab9dc378bac8f6da2ee4c035798db 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.54.0") + monsterVersion = new Version("3.55.0") let m = getMonsterVersion();