From a58d9e0d705b014f6872487f3456e6224e9c8d2e Mon Sep 17 00:00:00 2001 From: Hamdi LAADHARI Date: Sun, 6 Sep 2026 10:19:55 +0200 Subject: [PATCH] chore(release): 0.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Minor rather than patch: the release adds TypeScript declarations, which is a new capability for consumers. The style-merge fix is a behaviour change, but a corrective one — a partial style override now leaves the untouched defaults in place instead of dropping them. Anyone who worked around it by restating every default is unaffected, since a complete override still behaves the same way. Co-Authored-By: Claude Opus 5 --- CHANGELOG.md | 5 ++++- package.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d7caa1..233d979 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ release steps in [CONTRIBUTING.md](CONTRIBUTING.md). ## [Unreleased] +## [0.3.0] - 2026-09-06 + ### Added - TypeScript declarations, shipped with the package as `src/index.d.ts` and @@ -111,7 +113,8 @@ release steps in [CONTRIBUTING.md](CONTRIBUTING.md). - Adopted Biome for linting and formatting, and Prettier for everything Biome does not cover, both enforced in CI. -[unreleased]: https://github.com/killerwolf/visual-image-tool/compare/0.2.6...HEAD +[unreleased]: https://github.com/killerwolf/visual-image-tool/compare/0.3.0...HEAD +[0.3.0]: https://github.com/killerwolf/visual-image-tool/compare/0.2.6...0.3.0 [0.2.6]: https://github.com/killerwolf/visual-image-tool/compare/0.2.5...0.2.6 [0.2.5]: https://github.com/killerwolf/visual-image-tool/compare/0.2.4...0.2.5 [0.2.4]: https://github.com/killerwolf/visual-image-tool/compare/0.2.3...0.2.4 diff --git a/package.json b/package.json index 565f8d8..d4cb5bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@h4md1/visual-image-tool", - "version": "0.2.6", + "version": "0.3.0", "description": "Zero-dependency vanilla JS tool to pick focal points and crop zones on images.", "main": "dist/visual-image-tool.cjs", "module": "dist/visual-image-tool.esm.js",