Skip to content

Commit

Permalink
ci(changesets): version packages (#1601)
Browse files Browse the repository at this point in the history
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-codemod@0.3.0

### Minor Changes

- Add Banner to iconName transformation target
([#1562](#1562)) by
@yangwooseong

## @channel.io/bezier-icons@0.11.0

### Minor Changes

- Add script for generating svg file from icons.json
([#1596](#1596)) by
@yangwooseong

## @channel.io/bezier-react@1.12.0

### Minor Changes

- Allow `iconName` prop of `Button`, `Banner`, `SectionLabel` component
to include `BezierIcon` type
([#1562](#1562)) by
@yangwooseong

### Patch Changes

- Fixed a rendering bug that occurs when using `react-resize-detector`
and `asChild`prop of `radix-ui` simultaneously.
([#1577](#1577)) by
@yangwooseong

- Removed indicator adjusting logic by `react-resize-detector` using css
transform property

- Replace `@channel.io/react-docgen-typescript-plugin` with Storybook's
`reactDocgen` option
([#1594](#1594)) by
@Dogdriip

## bezier-figma-plugin@0.4.0

### Minor Changes

- Enhance bezier-figma-plugin running performance
([#1596](#1596)) by
@yangwooseong
- Remove svg extract process using FigmaAPI and merely send json file
that contains svg string
    -   Make icon files based on given json file during Github Action

### Patch Changes

-   Updated dependencies
    -   @channel.io/bezier-react@1.12.0
    -   @channel.io/bezier-icons@0.11.0

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Sep 12, 2023
1 parent d602c00 commit f5109ec
Show file tree
Hide file tree
Showing 15 changed files with 49 additions and 42 deletions.
6 changes: 0 additions & 6 deletions .changeset/angry-emus-repeat.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/dull-pillows-clean.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-tools-agree.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-kiwis-destroy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-cars-wonder.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/seven-bikes-unite.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/bezier-codemod/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @channel.io/bezier-codemod

## 0.3.0

### Minor Changes

- Add Banner to iconName transformation target ([#1562](https://github.com/channel-io/bezier-react/pull/1562)) by @yangwooseong

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bezier-codemod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@channel.io/bezier-codemod",
"version": "0.2.1",
"version": "0.3.0",
"description": "Codemod transformations to help upgrade app using Bezier design system.",
"repository": {
"type": "git",
Expand Down
14 changes: 14 additions & 0 deletions packages/bezier-figma-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# bezier-figma-plugin

## 0.4.0

### Minor Changes

- Enhance bezier-figma-plugin running performance ([#1596](https://github.com/channel-io/bezier-react/pull/1596)) by @yangwooseong
- Remove svg extract process using FigmaAPI and merely send json file that contains svg string
- Make icon files based on given json file during Github Action

### Patch Changes

- Updated dependencies
- @channel.io/bezier-react@1.12.0
- @channel.io/bezier-icons@0.11.0

## 0.3.19

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/bezier-figma-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bezier-figma-plugin",
"version": "0.3.19",
"version": "0.4.0",
"private": true,
"description": "Figma plugin that helps build Bezier design system and increase productivity.",
"repository": {
Expand Down Expand Up @@ -37,7 +37,7 @@
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@channel.io/bezier-icons": "^0.10.0",
"@channel.io/bezier-icons": "^0.11.0",
"@channel.io/bezier-react": "workspace:^",
"octokit": "^2.1.0",
"react": "^18.2.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/bezier-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @channel.io/bezier-icons

## 0.11.0

### Minor Changes

- Add script for generating svg file from icons.json ([#1596](https://github.com/channel-io/bezier-react/pull/1596)) by @yangwooseong

## 0.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bezier-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@channel.io/bezier-icons",
"version": "0.10.0",
"version": "0.11.0",
"description": "Icon library that implements Bezier design system.",
"repository": {
"type": "git",
Expand Down
14 changes: 14 additions & 0 deletions packages/bezier-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @channel.io/bezier-react

## 1.12.0

### Minor Changes

- Allow `iconName` prop of `Button`, `Banner`, `SectionLabel` component to include `BezierIcon` type ([#1562](https://github.com/channel-io/bezier-react/pull/1562)) by @yangwooseong

### Patch Changes

- Fixed a rendering bug that occurs when using `react-resize-detector` and `asChild`prop of `radix-ui` simultaneously. ([#1577](https://github.com/channel-io/bezier-react/pull/1577)) by @yangwooseong

- Removed indicator adjusting logic by `react-resize-detector` using css transform property

- Replace `@channel.io/react-docgen-typescript-plugin` with Storybook's `reactDocgen` option ([#1594](https://github.com/channel-io/bezier-react/pull/1594)) by @Dogdriip

## 1.11.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/bezier-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@channel.io/bezier-react",
"version": "1.11.1",
"version": "1.12.0",
"description": "React components library that implements Bezier design system.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -63,7 +63,7 @@
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@channel.io/bezier-icons": "^0.10.0",
"@channel.io/bezier-icons": "^0.11.0",
"@mdx-js/react": "^1.6.22",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2629,7 +2629,7 @@ __metadata:
languageName: unknown
linkType: soft

"@channel.io/bezier-icons@^0.10.0, @channel.io/bezier-icons@workspace:packages/bezier-icons":
"@channel.io/bezier-icons@^0.11.0, @channel.io/bezier-icons@workspace:packages/bezier-icons":
version: 0.0.0-use.local
resolution: "@channel.io/bezier-icons@workspace:packages/bezier-icons"
dependencies:
Expand Down Expand Up @@ -2662,7 +2662,7 @@ __metadata:
"@babel/preset-env": ^7.22.15
"@babel/preset-react": ^7.22.15
"@babel/preset-typescript": ^7.22.15
"@channel.io/bezier-icons": ^0.10.0
"@channel.io/bezier-icons": ^0.11.0
"@mdx-js/react": ^1.6.22
"@radix-ui/react-checkbox": ^1.0.4
"@radix-ui/react-dialog": ^1.0.4
Expand Down Expand Up @@ -8882,7 +8882,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "bezier-figma-plugin@workspace:packages/bezier-figma-plugin"
dependencies:
"@channel.io/bezier-icons": ^0.10.0
"@channel.io/bezier-icons": ^0.11.0
"@channel.io/bezier-react": "workspace:^"
"@figma/plugin-typings": ^1.76.0
"@types/react": ^18.2.21
Expand Down

0 comments on commit f5109ec

Please sign in to comment.