File tree Expand file tree Collapse file tree 3 files changed +21
-17
lines changed
Expand file tree Collapse file tree 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.
120120Make sure all your changes are committed (including an entry in HISTORY.rst).
121121Then run::
122122
123- $ bumpversion patch # possible: major / minor / patch
123+ $ bump-my-version patch # possible: major / minor / patch
124124$ git push
125125$ git push --tags
126126
Original file line number Diff line number Diff line change @@ -111,3 +111,23 @@ mypy_path = "src"
111111[[tool .mypy .overrides ]]
112112module = [" graypy" , " graypy.handler" ]
113113ignore_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