From 4278e98fb9b545df1bd358a70474690fcdaa1d25 Mon Sep 17 00:00:00 2001 From: Rakan Nimer Date: Sun, 22 Sep 2024 15:20:27 -0500 Subject: [PATCH] chore(release): 4.0.2 --- .github/workflows/publish.yml | 2 +- CHANGELOG.md | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 4 ++-- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9b7ef19e..59ef38b8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: run: npm i - name: Publish run: | - npm run cleanPublish --without-publish --temp-dir package + npm run cleanPublish npm run publish --non-interactive package env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 11b0448a..815d7c20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [4.0.2](https://github.com/RakanNimer/react-google-charts/compare/v4.0.1...v4.0.2) (2024-09-22) + + +### Bug Fixes + +* add null as cell type ([07487d1](https://github.com/RakanNimer/react-google-charts/commit/07487d1aa28bd3b07adc69b273070948f470b1a6)), closes [#388](https://github.com/RakanNimer/react-google-charts/issues/388) +* **docs:** Update homepage link. ([944afc1](https://github.com/RakanNimer/react-google-charts/commit/944afc1f1766af52184bd07aa9196b2e56ae9cbb)) +* fix empty columns check ([88e77f2](https://github.com/RakanNimer/react-google-charts/commit/88e77f2cba2923518d116f3ad23310abd7356940)) +* switch to using a dataView to hide columns ([2d91574](https://github.com/RakanNimer/react-google-charts/commit/2d91574f6286ab88ac9f75a68ead5f8d90783af9)), closes [#391](https://github.com/RakanNimer/react-google-charts/issues/391) +* update backgroundColor type ([d560a30](https://github.com/RakanNimer/react-google-charts/commit/d560a30d63fff94ca0585b9fa5d9d61e6e1191fd)), closes [#375](https://github.com/RakanNimer/react-google-charts/issues/375) + ### [4.0.1](https://github.com/RakanNimer/react-google-charts/compare/v4.0.0...v4.0.1) (2023-07-20) diff --git a/package-lock.json b/package-lock.json index d2ed2daf..f0091bda 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-google-charts", - "version": "4.0.1", + "version": "4.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-google-charts", - "version": "4.0.1", + "version": "4.0.2", "license": "MIT", "devDependencies": { "@babel/core": "^7.16.0", diff --git a/package.json b/package.json index d3ba04e0..127a8757 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-google-charts", - "version": "4.0.1", + "version": "4.0.2", "description": "react-google-charts React component", "type": "module", "sideEffects": false, @@ -29,7 +29,7 @@ "bumpVersion": "standard-version", "createGithubRelease": "simple-github-release", "release": "npm run bumpVersion && git push origin master --tags && npm run createGithubRelease", - "cleanPublish": "npm run test && npm run build && clean-publish", + "cleanPublish": "npm run test && npm run build && clean-publish --without-publish --temp-dir package", "updateGitHooks": "simple-git-hooks", "nano-staged": "nano-staged", "commitlint": "commitlint --edit $1"