From c85d588317a88d0c1f4231e9e9defdccfe601fa7 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 4 Sep 2025 12:14:15 -0700 Subject: [PATCH] v0.6.0 --- CHANGELOG.md | 15 +++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b02bc56..0f3fe59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ SPDX-FileCopyrightText: 2025 Chris Duncan SPDX-License-Identifier: GPL-3.0-or-later --> +## v0.6.0 + +### Notable Changes + +#### Minification support + +Due to how the `Vault` worker was constructed, the build system could not take +advantage of all minification features without breaking how variable names and +class names are resolved in the worker itself. This version refactors how the +worker code is constructed in such a way that enables the build system to apply +name mangling and minification while bundling. This also enables other +frameworks like Angular to bundle `libnemo` without further breakage. + + + ## v0.5.3 ### Notable Changes diff --git a/package-lock.json b/package-lock.json index db3beb1..da2bd49 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "libnemo", - "version": "0.5.3", + "version": "0.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "libnemo", - "version": "0.5.3", + "version": "0.6.0", "license": "(GPL-3.0-or-later AND MIT AND ISC)", "dependencies": { "nano-pow": "^5.1.4" diff --git a/package.json b/package.json index c63d309..8ce3b23 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "libnemo", - "version": "0.5.3", + "version": "0.6.0", "description": "Asynchronous, non-blocking Nano cryptocurrency integration toolkit.", "keywords": [ "nemo", -- 2.47.3