File tree Expand file tree Collapse file tree 2 files changed +19
-10
lines changed Expand file tree Collapse file tree 2 files changed +19
-10
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -25,7 +25,10 @@ dependencies = ["pydantic~=2.0"]
25
25
26
26
[project .optional-dependencies ]
27
27
test = [" pytest" , " pytest-cov" , " shapely" ]
28
- dev = [" pre-commit" ]
28
+ dev = [
29
+ " pre-commit" ,
30
+ " bump-my-version" ,
31
+ ]
29
32
docs = [
30
33
" mkdocs" ,
31
34
" mkdocs-material" ,
@@ -95,3 +98,18 @@ ignore = [
95
98
96
99
[tool .ruff .per-file-ignores ]
97
100
"tests/*.py" = [" D1" ]
101
+
102
+ [tool .bumpversion ]
103
+ current_version = " 1.1.0"
104
+
105
+ search = " {current_version}"
106
+ replace = " {new_version}"
107
+ regex = false
108
+ tag = true
109
+ commit = true
110
+ tag_name = " {new_version}"
111
+
112
+ [[tool .bumpversion .files ]]
113
+ filename = " geojson_pydantic/__init__.py"
114
+ search = ' __version__ = "{current_version}"'
115
+ replace = ' __version__ = "{new_version}"'
You can’t perform that action at this time.
0 commit comments