Skip to content

Commit

Permalink
chore(release): update package.json version to 1.0.1 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Apr 4, 2021
1 parent 1b6fa49 commit 1a41f41
Showing 1 changed file with 42 additions and 14 deletions.
56 changes: 42 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "advanced-react-native-sortable-list",
"version": "1.1.2",
"version": "1.0.1",
"description": "A versatile list component that helps you generate a list whose items can be sorted.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -90,20 +90,48 @@
},
"release": {
"plugins": [
["@semantic-release/commit-analyzer", {
"releaseRules": [
{"breaking": true, "release": "major"},
{"type": "feat", "release": "minor"},
{"type": "fix", "release": "patch"},
{"type": "chore", "release": "patch"},
{"type": "docs", "scope":"README", "release": "patch"},
{"type": "refactor", "release": "patch"},
{"type": "style", "release": "patch"}
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
}],
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
Expand Down

0 comments on commit 1a41f41

Please sign in to comment.