Skip to content

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Nov 25, 2022
1 parent af42ec4 commit 121a8c1
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 3 deletions.
88 changes: 87 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,3 +1,89 @@
{
"extends": "@bubkoo/semantic-release-config"
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "build",
"release": "patch"
},
{
"type": "ci",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "perf",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github",
{
"addReleases": "bottom"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
]
}
]
]
}
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@semantic-release-monorepo/cli",
"version": "2.0.5",
"version": "2.0.8",
"type": "module",
"exports": "./index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@semantic-release-monorepo/core",
"version": "2.1.2",
"version": "2.1.3",
"description": "Apply semantic-release's automatic publishing to a monorepo",
"type": "module",
"exports": "./esm/index.js",
Expand Down

0 comments on commit 121a8c1

Please sign in to comment.