From 0a46b3f43c8501b8bf5a8810ce46f8ae1709dd94 Mon Sep 17 00:00:00 2001 From: Vitaly Koiro Date: Sat, 17 May 2025 16:21:24 +0300 Subject: [PATCH 1/2] fix(core): Urgent fix for an accidental `console.log()` in the core. --- package.json | 2 +- src/core/managers/DOMManager.mjs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 23c0f36..82aa052 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "prismium-src", - "version": "4.1.4", + "version": "4.1.5", "description": "A modern JavaScript accordion library with smooth animations. Easily integrates with React, Vue, and vanilla JavaScript.", "type": "module", "scripts": { diff --git a/src/core/managers/DOMManager.mjs b/src/core/managers/DOMManager.mjs index 5e44ce9..3a3343a 100644 --- a/src/core/managers/DOMManager.mjs +++ b/src/core/managers/DOMManager.mjs @@ -93,7 +93,6 @@ export class DOMManager { */ setTheme(el) { const { theme } = this.instance.options; - console.log(el); if (theme) { if (typeof theme === 'object') { From 7b3cd2858f29ff1ac4ce993502f3af5cf00745d5 Mon Sep 17 00:00:00 2001 From: Vitaly Koiro Date: Sat, 17 May 2025 16:22:24 +0300 Subject: [PATCH 2/2] docs(changelog): update --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 605b46a..9208358 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 4.1.5 - Released on 2025-05-17 + +### Fixes + +- Urgent fix for an accidental `console.log()` in the core. + +
+ ## 4.1.4 - Released on 2025-05-17 ### Fixes