diff --git a/CHANGELOG.md b/CHANGELOG.md index 81973b6..6dd347e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [13.0.0](https://github.com/nfroidure/svgicons2svgfont/compare/v12.0.0...v13.0.0) (2024-07-30) + + +### Bug Fixes + +* **tests:** fix ci tests ([9c4152f](https://github.com/nfroidure/svgicons2svgfont/commit/9c4152f42c465db06841fd46ba02c55d4c2d6cdc)) + + +### Code Refactoring + +* **core:** complete rewrite with Typescript and modern node APIs ([e84a5ce](https://github.com/nfroidure/svgicons2svgfont/commit/e84a5ceca5c3b73662d986ffbfcadabbe8b766d8)), closes [#169](https://github.com/nfroidure/svgicons2svgfont/issues/169) [#129](https://github.com/nfroidure/svgicons2svgfont/issues/129) [#91](https://github.com/nfroidure/svgicons2svgfont/issues/91) + + +### BREAKING CHANGES + +* **core:** Requires Node 20.11+ and ESM + + + # [12.0.0](https://github.com/nfroidure/svgicons2svgfont/compare/v11.0.0...v12.0.0) (2022-05-28) diff --git a/package-lock.json b/package-lock.json index 8db1b7e..682d3e2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "svgicons2svgfont", - "version": "12.0.0", + "version": "13.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "svgicons2svgfont", - "version": "12.0.0", + "version": "13.0.0", "license": "MIT", "dependencies": { "@types/sax": "^1.2.7", diff --git a/package.json b/package.json index 757c0e1..61a29fa 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ } }, "name": "svgicons2svgfont", - "version": "12.0.0", + "version": "13.0.0", "description": "Read a set of SVG icons and output a SVG font", "homepage": "https://github.com/nfroidure/svgicons2svgfont", "main": "dist/index.js",