From 5fb439b8766b391bb83c45329ebe4803daa3427c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 20:46:30 +0900 Subject: [PATCH] ci(changesets): version packages (#2155) This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @channel.io/bezier-react@2.0.2 ### Patch Changes - Fixes an issue where injecting `className` into `FormLabel`, `FormHelperText` inside a `FormControl` does not apply styles correctly. ([#2156](https://github.com/channel-io/bezier-react/pull/2156)) by @sungik-choi - Updated dependencies - @channel.io/bezier-tokens@0.2.1 ## @channel.io/bezier-tokens@0.2.1 ### Patch Changes - Add "color" prefix to alpha color tokens and fix misnaming of alpha font/typography tokens. ([#2152](https://github.com/channel-io/bezier-react/pull/2152)) by @sungik-choi ## bezier-figma-plugin@0.5.2 ### Patch Changes - Updated dependencies - @channel.io/bezier-react@2.0.2 Co-authored-by: github-actions[bot] --- .changeset/serious-bottles-film.md | 5 ----- .changeset/witty-icons-beg.md | 5 ----- packages/bezier-figma-plugin/CHANGELOG.md | 7 +++++++ packages/bezier-figma-plugin/package.json | 4 ++-- packages/bezier-react/CHANGELOG.md | 9 +++++++++ packages/bezier-react/package.json | 4 ++-- packages/bezier-tokens/CHANGELOG.md | 6 ++++++ packages/bezier-tokens/package.json | 2 +- packages/bezier-vscode/package.json | 2 +- yarn.lock | 10 +++++----- 10 files changed, 33 insertions(+), 21 deletions(-) delete mode 100644 .changeset/serious-bottles-film.md delete mode 100644 .changeset/witty-icons-beg.md diff --git a/.changeset/serious-bottles-film.md b/.changeset/serious-bottles-film.md deleted file mode 100644 index e39761b0e7..0000000000 --- a/.changeset/serious-bottles-film.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@channel.io/bezier-tokens": patch ---- - -Add "color" prefix to alpha color tokens and fix misnaming of alpha font/typography tokens. diff --git a/.changeset/witty-icons-beg.md b/.changeset/witty-icons-beg.md deleted file mode 100644 index 4833a23290..0000000000 --- a/.changeset/witty-icons-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@channel.io/bezier-react": patch ---- - -Fixes an issue where injecting `className` into `FormLabel`, `FormHelperText` inside a `FormControl` does not apply styles correctly. diff --git a/packages/bezier-figma-plugin/CHANGELOG.md b/packages/bezier-figma-plugin/CHANGELOG.md index 2d8d80b98e..08694bfc1d 100644 --- a/packages/bezier-figma-plugin/CHANGELOG.md +++ b/packages/bezier-figma-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # bezier-figma-plugin +## 0.5.2 + +### Patch Changes + +- Updated dependencies + - @channel.io/bezier-react@2.0.2 + ## 0.5.1 ### Patch Changes diff --git a/packages/bezier-figma-plugin/package.json b/packages/bezier-figma-plugin/package.json index a68cf6a784..2bee62c45a 100644 --- a/packages/bezier-figma-plugin/package.json +++ b/packages/bezier-figma-plugin/package.json @@ -1,6 +1,6 @@ { "name": "bezier-figma-plugin", - "version": "0.5.1", + "version": "0.5.2", "private": true, "description": "Figma plugin that helps build Bezier design system and increase productivity.", "repository": { @@ -39,7 +39,7 @@ }, "dependencies": { "@channel.io/bezier-icons": "0.23.0", - "@channel.io/bezier-react": "2.0.1", + "@channel.io/bezier-react": "2.0.2", "octokit": "^3.1.2", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/packages/bezier-react/CHANGELOG.md b/packages/bezier-react/CHANGELOG.md index 39ee7789c3..fd28e2d4c1 100644 --- a/packages/bezier-react/CHANGELOG.md +++ b/packages/bezier-react/CHANGELOG.md @@ -1,5 +1,14 @@ # @channel.io/bezier-react +## 2.0.2 + +### Patch Changes + +- Fixes an issue where injecting `className` into `FormLabel`, `FormHelperText` inside a `FormControl` does not apply styles correctly. ([#2156](https://github.com/channel-io/bezier-react/pull/2156)) by @sungik-choi + +- Updated dependencies + - @channel.io/bezier-tokens@0.2.1 + ## 2.0.1 ### Patch Changes diff --git a/packages/bezier-react/package.json b/packages/bezier-react/package.json index f18e05bd91..be198b4ecd 100644 --- a/packages/bezier-react/package.json +++ b/packages/bezier-react/package.json @@ -1,6 +1,6 @@ { "name": "@channel.io/bezier-react", - "version": "2.0.1", + "version": "2.0.2", "description": "React components library that implements Bezier design system.", "repository": { "type": "git", @@ -127,7 +127,7 @@ } }, "dependencies": { - "@channel.io/bezier-tokens": "0.2.0", + "@channel.io/bezier-tokens": "0.2.1", "@radix-ui/react-checkbox": "^1.0.4", "@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-radio-group": "^1.1.3", diff --git a/packages/bezier-tokens/CHANGELOG.md b/packages/bezier-tokens/CHANGELOG.md index 5351acef23..14b1fa4f3c 100644 --- a/packages/bezier-tokens/CHANGELOG.md +++ b/packages/bezier-tokens/CHANGELOG.md @@ -1,5 +1,11 @@ # @channel.io/bezier-tokens +## 0.2.1 + +### Patch Changes + +- Add "color" prefix to alpha color tokens and fix misnaming of alpha font/typography tokens. ([#2152](https://github.com/channel-io/bezier-react/pull/2152)) by @sungik-choi + ## 0.2.0 ### Minor Changes diff --git a/packages/bezier-tokens/package.json b/packages/bezier-tokens/package.json index ada36ba0c4..226cf2080a 100644 --- a/packages/bezier-tokens/package.json +++ b/packages/bezier-tokens/package.json @@ -1,6 +1,6 @@ { "name": "@channel.io/bezier-tokens", - "version": "0.2.0", + "version": "0.2.1", "description": "Design tokens for Bezier design system.", "repository": { "type": "git", diff --git a/packages/bezier-vscode/package.json b/packages/bezier-vscode/package.json index d843d40221..0963929ba4 100644 --- a/packages/bezier-vscode/package.json +++ b/packages/bezier-vscode/package.json @@ -63,7 +63,7 @@ "vscode-languageserver-textdocument": "^1.0.11" }, "devDependencies": { - "@channel.io/bezier-tokens": "0.2.0", + "@channel.io/bezier-tokens": "0.2.1", "@types/node": "^20.11.20", "@types/vscode": "^1.64.0" } diff --git a/yarn.lock b/yarn.lock index c696d48e28..6cfca077fe 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1948,7 +1948,7 @@ __metadata: languageName: unknown linkType: soft -"@channel.io/bezier-react@npm:2.0.1, @channel.io/bezier-react@workspace:packages/bezier-react": +"@channel.io/bezier-react@npm:2.0.2, @channel.io/bezier-react@workspace:packages/bezier-react": version: 0.0.0-use.local resolution: "@channel.io/bezier-react@workspace:packages/bezier-react" dependencies: @@ -1957,7 +1957,7 @@ __metadata: "@babel/preset-react": "npm:^7.23.3" "@babel/preset-typescript": "npm:^7.23.3" "@channel.io/bezier-icons": "npm:0.23.0" - "@channel.io/bezier-tokens": "npm:0.2.0" + "@channel.io/bezier-tokens": "npm:0.2.1" "@radix-ui/react-checkbox": "npm:^1.0.4" "@radix-ui/react-dialog": "npm:^1.0.5" "@radix-ui/react-radio-group": "npm:^1.1.3" @@ -2034,7 +2034,7 @@ __metadata: languageName: unknown linkType: soft -"@channel.io/bezier-tokens@npm:0.2.0, @channel.io/bezier-tokens@workspace:packages/bezier-tokens": +"@channel.io/bezier-tokens@npm:0.2.1, @channel.io/bezier-tokens@workspace:packages/bezier-tokens": version: 0.0.0-use.local resolution: "@channel.io/bezier-tokens@workspace:packages/bezier-tokens" dependencies: @@ -2049,7 +2049,7 @@ __metadata: version: 0.0.0-use.local resolution: "@channel.io/bezier-vscode@workspace:packages/bezier-vscode" dependencies: - "@channel.io/bezier-tokens": "npm:0.2.0" + "@channel.io/bezier-tokens": "npm:0.2.1" "@types/node": "npm:^20.11.20" "@types/vscode": "npm:^1.64.0" vscode-languageclient: "npm:^9.0.1" @@ -8359,7 +8359,7 @@ __metadata: resolution: "bezier-figma-plugin@workspace:packages/bezier-figma-plugin" dependencies: "@channel.io/bezier-icons": "npm:0.23.0" - "@channel.io/bezier-react": "npm:2.0.1" + "@channel.io/bezier-react": "npm:2.0.2" "@figma/plugin-typings": "npm:^1.87.0" "@types/react": "npm:^18.2.59" "@types/react-dom": "npm:^18.2.19"