From 8a12be95cb64e41b68d74410787f26769d249fe2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 18:37:21 +0800 Subject: [PATCH] chore(release): version packages (#948) Co-authored-by: github-actions[bot] --- .changeset/tonic-ui-945.md | 5 ----- .changeset/tonic-ui-945b.md | 12 ------------ packages/codemod/CHANGELOG.md | 7 +++++++ packages/codemod/package.json | 2 +- packages/react-base/CHANGELOG.md | 9 +++++++++ packages/react-base/package.json | 4 ++-- packages/react-hooks/CHANGELOG.md | 9 +++++++++ packages/react-hooks/package.json | 4 ++-- packages/react-icons/CHANGELOG.md | 8 ++++++++ packages/react-icons/package.json | 4 ++-- packages/react/CHANGELOG.md | 17 +++++++++++++++++ packages/react/package.json | 14 +++++++------- packages/styled-system/CHANGELOG.md | 6 ++++++ packages/styled-system/package.json | 2 +- packages/theme/CHANGELOG.md | 7 +++++++ packages/theme/package.json | 2 +- packages/utils/CHANGELOG.md | 6 ++++++ packages/utils/package.json | 2 +- 18 files changed, 86 insertions(+), 34 deletions(-) delete mode 100644 .changeset/tonic-ui-945.md delete mode 100644 .changeset/tonic-ui-945b.md create mode 100644 packages/codemod/CHANGELOG.md create mode 100644 packages/react-base/CHANGELOG.md create mode 100644 packages/react-hooks/CHANGELOG.md create mode 100644 packages/theme/CHANGELOG.md diff --git a/.changeset/tonic-ui-945.md b/.changeset/tonic-ui-945.md deleted file mode 100644 index 480045e73a..0000000000 --- a/.changeset/tonic-ui-945.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@tonic-ui/react": minor ---- - -feat(react): add `createTheme` for theme customization diff --git a/.changeset/tonic-ui-945b.md b/.changeset/tonic-ui-945b.md deleted file mode 100644 index a95b424198..0000000000 --- a/.changeset/tonic-ui-945b.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@tonic-ui/codemod": patch -"@tonic-ui/react": patch -"@tonic-ui/react-base": patch -"@tonic-ui/react-hooks": patch -"@tonic-ui/react-icons": patch -"@tonic-ui/styled-system": patch -"@tonic-ui/theme": patch -"@tonic-ui/utils": patch ---- - -chore: update package description diff --git a/packages/codemod/CHANGELOG.md b/packages/codemod/CHANGELOG.md new file mode 100644 index 0000000000..d2c5ecd3d9 --- /dev/null +++ b/packages/codemod/CHANGELOG.md @@ -0,0 +1,7 @@ +# @tonic-ui/codemod + +## 2.1.1 + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) diff --git a/packages/codemod/package.json b/packages/codemod/package.json index c3e6aea72d..a5c35f7329 100644 --- a/packages/codemod/package.json +++ b/packages/codemod/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/codemod", - "version": "2.1.0", + "version": "2.1.1", "description": "A set of codemod scripts designed to simplify the migration and updating of Tonic UI applications.", "bin": "./codemod-cli.js", "files": [ diff --git a/packages/react-base/CHANGELOG.md b/packages/react-base/CHANGELOG.md new file mode 100644 index 0000000000..6a482ac1ee --- /dev/null +++ b/packages/react-base/CHANGELOG.md @@ -0,0 +1,9 @@ +# @tonic-ui/react-base + +## 2.0.2 + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) +- Updated dependencies [[`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f)] + - @tonic-ui/styled-system@2.0.3 diff --git a/packages/react-base/package.json b/packages/react-base/package.json index c3dcde8f4a..8fedf2a303 100644 --- a/packages/react-base/package.json +++ b/packages/react-base/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/react-base", - "version": "2.0.1", + "version": "2.0.2", "description": "Headless React components intended for creating custom UI elements.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -23,7 +23,7 @@ "@emotion/is-prop-valid": "1.x", "@emotion/react": "11.x", "@emotion/styled": "11.x", - "@tonic-ui/styled-system": "^2.0.1", + "@tonic-ui/styled-system": "^2.0.3", "ensure-type": "^1.5.1" }, "devDependencies": { diff --git a/packages/react-hooks/CHANGELOG.md b/packages/react-hooks/CHANGELOG.md new file mode 100644 index 0000000000..a0d0de294a --- /dev/null +++ b/packages/react-hooks/CHANGELOG.md @@ -0,0 +1,9 @@ +# @tonic-ui/react-hooks + +## 2.0.1 + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) +- Updated dependencies [[`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f)] + - @tonic-ui/utils@2.1.1 diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index 0084affbc2..d9c1b07c20 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/react-hooks", - "version": "2.0.0", + "version": "2.0.1", "description": "A set of React Hooks specifically for use with Tonic UI components.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -20,7 +20,7 @@ "test": "jest --maxWorkers=2" }, "dependencies": { - "@tonic-ui/utils": "^2.0.0" + "@tonic-ui/utils": "^2.1.1" }, "devDependencies": { "@babel/cli": "^7.0.0", diff --git a/packages/react-icons/CHANGELOG.md b/packages/react-icons/CHANGELOG.md index 68c9d3ab76..810093e9f6 100644 --- a/packages/react-icons/CHANGELOG.md +++ b/packages/react-icons/CHANGELOG.md @@ -1,5 +1,13 @@ # @tonic-ui/react-icons +## 2.1.1 + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) +- Updated dependencies [[`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f)] + - @tonic-ui/react-base@2.0.2 + ## 2.1.0 ### Minor Changes diff --git a/packages/react-icons/package.json b/packages/react-icons/package.json index a9e2071496..21ed6d3a13 100644 --- a/packages/react-icons/package.json +++ b/packages/react-icons/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/react-icons", - "version": "2.1.0", + "version": "2.1.1", "description": "A set of SVG icons available as React components for use in Tonic UI.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -21,7 +21,7 @@ "test": "jest --maxWorkers=2" }, "dependencies": { - "@tonic-ui/react-base": "^2.0.1" + "@tonic-ui/react-base": "^2.0.2" }, "devDependencies": { "@babel/plugin-transform-runtime": "^7.24.0", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 11ff04ad61..b8798af178 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,22 @@ # @tonic-ui/react +## 2.5.0 + +### Minor Changes + +- feat(react): add `createTheme` for theme customization by [@cheton](https://github.com/cheton) in [#947](https://github.com/trendmicro-frontend/tonic-ui/pull/947) + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) +- Updated dependencies [[`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f)] + - @tonic-ui/react-base@2.0.2 + - @tonic-ui/react-hooks@2.0.1 + - @tonic-ui/react-icons@2.1.1 + - @tonic-ui/styled-system@2.0.3 + - @tonic-ui/theme@2.0.1 + - @tonic-ui/utils@2.1.1 + ## 2.4.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index 03958d77e9..be57dacfb6 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/react", - "version": "2.4.0", + "version": "2.5.0", "description": "A comprehensive React component library for Tonic UI.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -24,12 +24,12 @@ "@emotion/react": "11.x", "@emotion/styled": "11.x", "@popperjs/core": "2.x", - "@tonic-ui/react-base": "^2.0.1", - "@tonic-ui/react-hooks": "^2.0.0", - "@tonic-ui/react-icons": "^2.0.2", - "@tonic-ui/styled-system": "^2.0.2", - "@tonic-ui/theme": "^2.0.0", - "@tonic-ui/utils": "^2.1.0", + "@tonic-ui/react-base": "^2.0.2", + "@tonic-ui/react-hooks": "^2.0.1", + "@tonic-ui/react-icons": "^2.1.1", + "@tonic-ui/styled-system": "^2.0.3", + "@tonic-ui/theme": "^2.0.1", + "@tonic-ui/utils": "^2.1.1", "date-fns": "2.x", "ensure-type": "^1.5.1", "lodash.get": "4.x", diff --git a/packages/styled-system/CHANGELOG.md b/packages/styled-system/CHANGELOG.md index 3b331bb7ae..42cd21bca0 100644 --- a/packages/styled-system/CHANGELOG.md +++ b/packages/styled-system/CHANGELOG.md @@ -1,5 +1,11 @@ # @tonic-ui/styled-system +## 2.0.3 + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) + ## 2.0.2 ### Patch Changes diff --git a/packages/styled-system/package.json b/packages/styled-system/package.json index da12db9812..2af08e5227 100644 --- a/packages/styled-system/package.json +++ b/packages/styled-system/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/styled-system", - "version": "2.0.2", + "version": "2.0.3", "description": "A framework-independent styling engine for Tonic UI.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md new file mode 100644 index 0000000000..2b4f6b4dd4 --- /dev/null +++ b/packages/theme/CHANGELOG.md @@ -0,0 +1,7 @@ +# @tonic-ui/theme + +## 2.0.1 + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) diff --git a/packages/theme/package.json b/packages/theme/package.json index d61a56fe9d..c279c22507 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/theme", - "version": "2.0.0", + "version": "2.0.1", "description": "The default theme configuration for Tonic UI components.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 3c0fee73e1..c257770012 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @tonic-ui/utils +## 2.1.1 + +### Patch Changes + +- chore: update package description by [@cheton](https://github.com/cheton) in [`371aa63`](https://github.com/trendmicro-frontend/tonic-ui/commit/371aa639b1da35a5554a1b664c7119eddc0ce69f) + ## 2.1.0 ### Minor Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 6bd71c6f00..59e39434d9 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/utils", - "version": "2.1.0", + "version": "2.1.1", "description": "A set of utility functions shared across Tonic UI components and packages.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js",