1.0.0 • Published 4 years ago
semantic-release-replacer v1.0.0
Semantic Release Replace Plugin
The @google/semantic-release-replace-plugin
plugin provides functionality to update version strings througout a project allowing semantic release to be used in many different languages and build processes.
Read more about Semantic Release.
Install
$ npm install @google/semantic-release-replace-plugin -D
Usage
The following example uses this plugin to demonstrate using semantic-release in a Python package where __VERSION__
is defined in the root __init__.py
file.
{
"plugins": [
"@semantic-release/commit-analyzer",
[
"@google/semantic-release-replace-plugin",
{
"replacements": [
{
"files": ["foo/__init__.py"],
"from": "__VERSION__ = \".*\"",
"to": "__VERSION__ = \"${nextRelease.version}\"",
"results": [
{
"file": "foo/__init__.py",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
}
],
[
"@semantic-release/git",
{
"assets": ["foo/*.py"]
}
]
]
}
Warning
This plugin will not commit changes unless you specify assets for the @semantic-release/git plugin! This is highlighted below.
[
"@semantic-release/git",
{
"assets": ["foo/*.py"]
}
]
Options
Please refer to the documentation for more options.
1.0.0
4 years ago