Skip to content

Commit

Permalink
release: v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed May 16, 2024
1 parent 586a665 commit dbb02b0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions .changeset/commit.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const getVersionMessage = async (releasePlan) => {
const publishableReleases = releasePlan.releases.filter(
(release) => release.type !== 'none',
)

const newVersion = publishableReleases[0].newVersion

return `release: v${newVersion}`
}

module.exports = { getVersionMessage }
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.0.0/schema.json",
"changelog": false,
"commit": false,
"commit": "./commit.js",
"linked": [],
"access": "restricted",
"baseBranch": "main",
Expand Down
2 changes: 1 addition & 1 deletion packages/builder-rsbuild/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "storybook-builder-rsbuild",
"version": "0.0.1",
"version": "0.0.2",
"description": "Rsbuild builder for Storybook",
"keywords": [
"storybook",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-rsbuild/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "storybook-react-rsbuild",
"version": "0.0.1",
"version": "0.0.2",
"description": "Storybook for React and Rsbuild: Develop React components in isolation with Hot Reloading.",
"keywords": [
"storybook",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue3-rsbuild/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "storybook-vue3-rsbuild",
"version": "0.0.1",
"version": "0.0.2",
"description": "Storybook for Vue3 and Rsbuild: Develop React Component in isolation with Hot Reloading.",
"keywords": [
"storybook",
Expand Down

0 comments on commit dbb02b0

Please sign in to comment.