-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from rkoumis/197-bump-version
Use bump-my-version tool to help with versioning
- Loading branch information
Showing
8 changed files
with
63 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,9 +149,12 @@ Zeek Enhancements (#177) | |
|
||
Author: Nikhileswar Reddy <[email protected]> | ||
|
||
4.0.0 | ||
3.4.0 (2024-11-12) | ||
################## | ||
|
||
Version 3.4.x is available initially on the pilot branch, | ||
in a sort of pre-release mode. | ||
|
||
* Use pyproject.toml (#184) (#189) | ||
* Use ruff format to format the code (#183) (#190) | ||
* Use ruff check --fix to make style changes (#183) (#192) | ||
|
@@ -163,3 +166,6 @@ Author: Nikhileswar Reddy <[email protected]> | |
* Use ruff to sort and format imports (#207) | ||
* Use ruff to detect flake8 bugbears (B) (#209) | ||
* Use pre-built zeek images (#181) | ||
* Use bump-my-version to update the version and tag (#197) | ||
* Also, use bump-my-version to update the dalton-agent version | ||
* Also, show the dalton controller version on the About page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[tool.bumpversion] | ||
current_version = "3.1.2" | ||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" | ||
serialize = ["{major}.{minor}.{patch}"] | ||
search = "{current_version}" | ||
replace = "{new_version}" | ||
regex = false | ||
ignore_missing_version = false | ||
ignore_missing_files = false | ||
tag = false | ||
sign_tags = false | ||
allow_dirty = false | ||
commit = true | ||
message = "Bump dalton-agent version: {current_version} → {new_version}" | ||
commit_args = "--no-verify" | ||
setup_hooks = [] | ||
pre_commit_hooks = [] | ||
post_commit_hooks = [] | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "dalton-agent/dalton-agent.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters