File tree 3 files changed +21
-17
lines changed
3 files changed +21
-17
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ A reminder for the maintainers on how to deploy.
120
120
Make sure all your changes are committed (including an entry in HISTORY.rst).
121
121
Then run::
122
122
123
- $ bumpversion patch # possible: major / minor / patch
123
+ $ bump-my-version patch # possible: major / minor / patch
124
124
$ git push
125
125
$ git push --tags
126
126
Original file line number Diff line number Diff line change @@ -111,3 +111,23 @@ mypy_path = "src"
111
111
[[tool .mypy .overrides ]]
112
112
module = [" graypy" , " graypy.handler" ]
113
113
ignore_missing_imports = true
114
+
115
+ [tool .bumpversion ]
116
+ current_version = " 0.32.0"
117
+ commit = true
118
+ tag = true
119
+
120
+ [[tool .bumpversion .files ]]
121
+ filename = " pyproject.toml"
122
+ search = ' version = "{current_version}"'
123
+ replace = ' version = "{new_version}"'
124
+
125
+ [[tool .bumpversion .files ]]
126
+ filename = ' src/zocalo/__init__.py'
127
+ search = ' __version__ = "{current_version}"'
128
+ replace = ' __version__ = "{new_version}"'
129
+
130
+ [[tool .bumpversion .files ]]
131
+ filename = " docs/conf.py"
132
+ search = ' version = "{current_version}"'
133
+ replace = ' version = "{new_version}"'
You can’t perform that action at this time.
0 commit comments