mirror of
https://github.com/mandiant/capa.git
synced 2026-04-28 11:53:20 -07:00
* Change capa-rules version in installation guide Updated the installation instructions to reflect the newest version of capa-rules. * add md files from /doc to bumpversion.toml * adjust rule installation command * bump to 9.4.0
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[tool.bumpversion]
|
|
current_version = "9.4.0"
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "capa/version.py"
|
|
search = '__version__ = "{current_version}"'
|
|
replace = '__version__ = "{new_version}"'
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "capa/ida/plugin/ida-plugin.json"
|
|
search = '"version": "{current_version}"'
|
|
replace = '"version": "{new_version}"'
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "capa/ida/plugin/ida-plugin.json"
|
|
search = '"flare-capa=={current_version}"'
|
|
replace = '"flare-capa=={new_version}"'
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "CHANGELOG.md"
|
|
search = "v{current_version}...master"
|
|
replace = "v{current_version}...{new_version}"
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "CHANGELOG.md"
|
|
search = "master (unreleased)"
|
|
replace = "v{new_version}"
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "doc/installation.md"
|
|
search = "v{current_version}.zip"
|
|
replace = "v{new_version}.zip"
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "doc/installation.md"
|
|
search = "capa-rules-{current_version}/"
|
|
replace = "capa-rules-{new_version}/"
|
|
|
|
[[tool.bumpversion.files]]
|
|
filename = "doc/rules.md"
|
|
search = "capa {current_version}"
|
|
replace = "capa {new_version}" |