Skip to content

Commit

Permalink
chore: add releaserc
Browse files Browse the repository at this point in the history
  • Loading branch information
josecorella committed Mar 6, 2024
1 parent a93ffe7 commit 94b46d7
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@

## Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
## SPDX-License-Identifier: Apache-2.0
{
"branches": ["jocorell/prep-release"],
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
},
"presetConfig": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Fixes"},
{"type": "chore", "section": "Maintenance"},
{"type": "docs", "section": "Maintenance"},
{"type": "revert", "section": "Fixes"},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "hidden": true},
{"type": "test", "hidden": true}
]
},
"releaseRules": [
{"type": "docs", "release": "patch"},
{"type": "revert", "release": "patch"},
{"type": "chore", "release": "patch"}
]
}],
["@semantic-release/release-notes-generator", {
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
},
"presetConfig": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Fixes"},
{"type": "chore", "section": "Maintenance"},
{"type": "docs", "section": "Maintenance"},
{"type": "revert", "section": "Fixes"},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "hidden": true},
{"type": "test", "hidden": true}
]
}
}],
["@semantic-release/changelog", {
"changelogFile": "./CHANGELOG.md",
"changelogTitle": "# Changelog"
}]
],
"repositoryUrl": "https://github.com/jocorell/aws-encryption-sdk-python",
}

0 comments on commit 94b46d7

Please sign in to comment.