diff --git a/CHANGELOG.md b/CHANGELOG.md index 5046d2e..33be882 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [0.6.0] - 2024-10-28 ### Changed - Changed the package format from CommonJS (CJS) only to a dual package supporting both CommonJS and ES Modules (ESM). @@ -82,7 +84,7 @@ ## [0.2.0] - 2020-06-05 -[Unreleased]: https://github.com/kurgm/kage-engine/compare/v0.5.0...HEAD +[unreleased]: https://github.com/kurgm/kage-engine/compare/v0.6.0...HEAD [0.5.0]: https://github.com/kurgm/kage-engine/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/kurgm/kage-engine/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/kurgm/kage-engine/compare/v0.3.0...v0.3.1 @@ -91,3 +93,5 @@ [0.2.2]: https://github.com/kurgm/kage-engine/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/kurgm/kage-engine/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/kurgm/kage-engine/releases/tag/v0.2.0 + +[0.6.0]: https://github.com/kurgm/kage-engine/releases/tag/v0.6.0 diff --git a/README.md b/README.md index 957130f..fcb4d8e 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ const { Kage, Polygons } = require("@kurgm/kage-engine"); Alternatively, you can load the bundled file from a CDN in your web page: ```html - + ``` This will define only `Kage` in the global scope. You can access `Polygons` and `Buhin` as `Kage`'s properties: ```js diff --git a/package-lock.json b/package-lock.json index 7b9768d..b3009c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@kurgm/kage-engine", - "version": "0.5.0", + "version": "0.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@kurgm/kage-engine", - "version": "0.5.0", + "version": "0.6.0", "license": "GPL-3.0", "devDependencies": { "@eslint/js": "^9.13.0", diff --git a/package.json b/package.json index 382d0b9..c7dd2a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kurgm/kage-engine", - "version": "0.5.0", + "version": "0.6.0", "description": "An engine that generates glyph image file from KAGE data", "directories": { "doc": "docs"