Skip to content

Commit

Permalink
chore(release): [juno-core] release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ZouYouShun committed Mar 15, 2022
1 parent d67c1e7 commit a130343
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 10 deletions.
9 changes: 9 additions & 0 deletions packages/juno-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

## [2.2.0](https://github.com/ringcentral/juno/compare/juno-core-v2.1.2...juno-core-v2.2.0) (2022-03-15)


### Features

* **Badge:** support round overlap ([06d67a1](https://github.com/ringcentral/juno/commit/06d67a1ea0dcd5e4ba5c85f993080384524e3a18))
* **Chip:** support component prop with overridableStyled ([ee650aa](https://github.com/ringcentral/juno/commit/ee650aa9f2d1680afd4727557ddc35d0e985a544))
* **MoreMenuTab:** support custom MenuItemComponent for moreMenu variant ([49c59fc](https://github.com/ringcentral/juno/commit/49c59fc80a595fb32f375a055027cc1f98b9de0b))

### [2.1.2](https://github.com/ringcentral/juno/compare/juno-core-v2.1.1...juno-core-v2.1.2) (2022-03-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/juno-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/juno",
"version": "2.1.3",
"version": "2.2.0",
"license": "MIT",
"author": "RingCentral",
"bugs": {
Expand Down
9 changes: 9 additions & 0 deletions packages/juno-storybook/src/docs/CHANGELOG.story.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ import { Canvas, Meta, Story } from '@storybook/addon-docs';
<br />


## [2.2.0](https://github.com/ringcentral/juno/compare/juno-core-v2.1.2...juno-core-v2.2.0) (2022-03-15)


### Features

* **Badge:** support round overlap ([06d67a1](https://github.com/ringcentral/juno/commit/06d67a1ea0dcd5e4ba5c85f993080384524e3a18))
* **Chip:** support component prop with overridableStyled ([ee650aa](https://github.com/ringcentral/juno/commit/ee650aa9f2d1680afd4727557ddc35d0e985a544))
* **MoreMenuTab:** support custom MenuItemComponent for moreMenu variant ([49c59fc](https://github.com/ringcentral/juno/commit/49c59fc80a595fb32f375a055027cc1f98b9de0b))

### [2.1.2](https://github.com/ringcentral/juno/compare/juno-core-v2.1.1...juno-core-v2.1.2) (2022-03-11)


Expand Down
20 changes: 11 additions & 9 deletions scripts/release/release.run.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,18 @@ const ignoreNext = process.argv.includes('--ignore-next');

const packagePath = `packages/${packageName}`;

const { currentRelease } = await inquirer.prompt([
{
type: 'list',
name: 'currentRelease',
message: `what kind of release do you want to do for ${packageName}?
const { currentRelease } = ignoreNext
? { currentRelease: 'current' }
: await inquirer.prompt([
{
type: 'list',
name: 'currentRelease',
message: `what kind of release do you want to do for ${packageName}?
(current as release now package version without bump version)`,
default: 'current',
choices: ['current', 'patch', 'minor', 'major'],
},
]);
default: 'current',
choices: ['current', 'patch', 'minor', 'major'],
},
]);
const isBump = currentRelease !== 'current';

const pathOptions = {
Expand Down

0 comments on commit a130343

Please sign in to comment.