diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ec5cb1298a..5b65c8ea6d0 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. +## [2.34.0](https://github.com/saadeghi/daisyui/compare/v2.33.0...v2.34.0) (2022-10-29) + + +### Bug Fixes + +* [#1186](https://github.com/saadeghi/daisyui/issues/1186) ([938d047](https://github.com/saadeghi/daisyui/commit/938d047c7059a825e7cfd743b1e0f4ffefda8095)) +* [#1265](https://github.com/saadeghi/daisyui/issues/1265) ([f25bf92](https://github.com/saadeghi/daisyui/commit/f25bf92643551893847936e6bca4d1a654dba15c)) +* [#1275](https://github.com/saadeghi/daisyui/issues/1275) ([6bba2de](https://github.com/saadeghi/daisyui/commit/6bba2de162bd6c25490cf278667c9d3e637ec3c9)) +* [#834](https://github.com/saadeghi/daisyui/issues/834) ([aa6e812](https://github.com/saadeghi/daisyui/commit/aa6e812e1af4c3f900b7d1efbe6e7c0019ad8693)) +* Error from comments in modal react examples ([#1278](https://github.com/saadeghi/daisyui/issues/1278)) ([b96415b](https://github.com/saadeghi/daisyui/commit/b96415b7a63f9decc006041e317bc34213826b14)) + ## [2.33.0](https://github.com/saadeghi/daisyui/compare/v2.32.0...v2.33.0) (2022-10-20) diff --git a/package.json b/package.json index b9c82dc9515..f4df9a92c51 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "daisyui", - "version": "2.33.0", + "version": "2.34.0", "description": "daisyUI - Tailwind CSS Components", "author": "Pouya Saadeghi", "license": "MIT", @@ -76,10 +76,10 @@ "test:ui": "vitest --ui", "test:run": "vitest run", "playground": "cd src/experiments/playground && npm run dev", - "release": "standard-version", - "release:patch": "standard-version --release-as patch", - "release:minor": "standard-version --release-as minor", - "release:major": "standard-version --release-as major" + "release": "rm package-lock.json && standard-version", + "release:patch": "rm package-lock.json && standard-version --release-as patch", + "release:minor": "rm package-lock.json && standard-version --release-as minor", + "release:major": "rm package-lock.json && standard-version --release-as major" }, "devDependencies": { "@parcel/css-cli": "1.5.0",