Skip to content

Commit

Permalink
Merge pull request #172 from hatemhosny/main
Browse files Browse the repository at this point in the history
release v0.1.2
  • Loading branch information
hatemhosny authored Aug 30, 2024
2 parents c6c5c9c + d609cf7 commit a1edfac
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions scripts/release-notes.js
Original file line number Diff line number Diff line change
@@ -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---';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/package.lib.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit a1edfac

Please sign in to comment.