Skip to content

Commit fb5c024

Browse files
committed
bumpversion update
1 parent 082a202 commit fb5c024

File tree

4 files changed

+49
-25
lines changed

4 files changed

+49
-25
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 24 deletions
This file was deleted.

.bumpversion.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[tool.bumpversion]
2+
current_version = "0.0.0"
3+
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
4+
serialize = ["{major}.{minor}.{patch}"]
5+
search = "{current_version}"
6+
replace = "{new_version}"
7+
regex = false
8+
ignore_missing_version = false
9+
ignore_missing_files = false
10+
tag = true
11+
sign_tags = false
12+
tag_name = "v{new_version}"
13+
tag_message = "Bump version: {current_version} → {new_version}"
14+
allow_dirty = false
15+
commit = true
16+
message = "Bump version: {current_version} → {new_version}"
17+
commit_args = ""
18+
19+
[[tool.bumpversion.files]]
20+
filename = "README.rst"
21+
search = "/v{current_version}.svg"
22+
replace = "/v{new_version}.svg"
23+
24+
[[tool.bumpversion.files]]
25+
filename = "README.rst"
26+
search = "/v{current_version}...main"
27+
replace = "/v{new_version}...main"
28+
29+
[[tool.bumpversion.files]]
30+
filename = "setup.py"
31+
search = "version={current_version}"
32+
replace = "version={new_version}"
33+
34+
[[tool.bumpversion.files]]
35+
filename = "docs/conf.py"
36+
search = "version = release = {current_version}"
37+
replace = "version = release = {new_version}"
38+
39+
[[tool.bumpversion.files]]
40+
filename = "src/priority_search_tree/__init__.py"
41+
search = "__version__ = {current_version}"
42+
replace = "__version__ = {new_version}"

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ Changelog
66
------------------
77

88
* First release on PyPI.
9+
10+
11+
0.0.1 (2024-03-24)
12+
------------------
13+
14+
* Initial implementation.

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ graft src
33
graft ci
44
graft tests
55

6-
include .bumpversion.cfg
6+
include .bumpversion.toml
77
include .coveragerc
88
include .editorconfig
99
include .github/workflows/build.yml

0 commit comments

Comments
 (0)