diff --git a/CHANGELOG.md b/CHANGELOG.md index 43e78ac..5f3b3cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file. See [standa --- +## [v0.1.2](https://github.com/hatemhosny/racing-bars/compare/v0.1.1...v0.1.2) (2024-08-30) + +### Bug Fixes + +- **data:** fix relative urls in web worker ([ee8296d](https://github.com/hatemhosny/racing-bars/commit/ee8296da3566455abe610ec2aeee0e24fd1a9018)) + +### Features + +- **data:** handle loading data errors ([ef615d7](https://github.com/hatemhosny/racing-bars/commit/ef615d7bca13d16973d7a329a38b12325f0daa4a)) + +### Others + +- **website:** add all gallery demos to playground ([b2c288e](https://github.com/hatemhosny/racing-bars/commit/b2c288e8c7b03748ba99dfa943bd6031c306d7be)) +- **website:** allow playground to change languages ([12f7f48](https://github.com/hatemhosny/racing-bars/commit/12f7f487fee06df7b994794a09db15a4f76073d8)) +- **website:** allow selecting playground language in querystring ([5725e5f](https://github.com/hatemhosny/racing-bars/commit/5725e5f13a626021d702a2d09d45245955b6d235)) +- **website:** load gallery demos in embedded playground ([747eade](https://github.com/hatemhosny/racing-bars/commit/747eadea98e48558537e7b169532a3f278e6d6df)) +- lint:stylelint and test:lint scripts ([fd43d45](https://github.com/hatemhosny/racing-bars/commit/fd43d45461297e791e1620569d5613ff3ba5fd81)) + +- **build:** upgrade most dependencies, including docusaurus that powers the website (Thanks @AhmedElbohoty) + +--- + ## [0.1.1](https://github.com/hatemhosny/racing-bars/compare/v0.1.0...0.1.1) (2024-08-20) - Automate preparing releases diff --git a/package.json b/package.json index 3c8bf5d..bc71873 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "postinstall": "cd website && npm install", "reset": "git clean -dfx && git reset --hard && npm i", "clean": "recursive-delete build && recursive-delete tmp && recursive-delete website/build && recursive-delete website/static/data && recursive-delete website/docs/api", - "start-release": "node ./scripts/start-release.mjs" + "start-release": "node ./scripts/start-release.js" }, "dependencies": { "d3": "7.9.0" diff --git a/scripts/release-notes.js b/scripts/release-notes.js index 06eccc4..aa6afa0 100644 --- a/scripts/release-notes.js +++ b/scripts/release-notes.js @@ -1,5 +1,5 @@ -const fs = require('fs'); -const path = require('path'); +import fs from 'fs'; +import path from 'path'; const changelog = fs.readFileSync(path.resolve('./CHANGELOG.md'), 'utf8'); const changelogSeparator = '\n---'; diff --git a/scripts/start-release.mjs b/scripts/start-release.js similarity index 100% rename from scripts/start-release.mjs rename to scripts/start-release.js diff --git a/src/package.lib.json b/src/package.lib.json index e6f2270..cfb69e0 100644 --- a/src/package.lib.json +++ b/src/package.lib.json @@ -1,6 +1,6 @@ { "name": "racing-bars", - "version": "0.1.1", + "version": "0.1.2", "description": "Bar chart race made easy 📶", "author": "Hatem Hosny", "license": "MIT",