File tree Expand file tree Collapse file tree 6 files changed +23
-4
lines changed
Expand file tree Collapse file tree 6 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1+ [bumpversion]
2+ current_version = 1.0.4
3+
4+ [comment]
5+ comment = The contents of this file cannot be merged with that of setup.cfg until https://github.com/c4urself/bump2version/issues/185 is resolved
6+
7+ [bumpversion:file:nanomesh/__init__.py]
8+ search = __version__ = ' {current_version}'
9+ replace = __version__ = ' {new_version}'
10+
11+ [bumpversion:file:CITATION.cff]
12+ search = version: " {current_version}"
13+ replace = version: " {new_version}"
14+
15+ [bumpversion:file:docs/conf.py]
16+ search = version = release = ' {current_version}'
17+ replace = version = release = ' {new_version}'
Original file line number Diff line number Diff line change @@ -28,6 +28,6 @@ keywords:
2828 - XDS
2929 - cluster-analysis
3030license: BSD-3-Clause
31- version: 1.0.2
31+ version: 1.0.4
3232date-released: '2021-11-25'
3333doi: 10.5281/zenodo.5727189
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ def setup(app):
7474author = 'Stef Smeets'
7575
7676# The short X.Y version.
77- version = release = '1.0.3 '
77+ version = release = '1.0.4 '
7878
7979# The language for content autogenerated by Sphinx.
8080language = 'english'
Original file line number Diff line number Diff line change 1- __version__ = '1.0.3 '
1+ __version__ = '1.0.4 '
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ openpyxl = ">=3.0.10"
4545[tool .poetry .dev-dependencies ]
4646check-manifest = " *"
4747pre-commit = " *"
48+ bump2version = " *"
4849
4950[tool .poetry .scripts ]
5051"edtools.autoindex" = " edtools.autoindex:main"
Original file line number Diff line number Diff line change 7373 extras_require = {
7474 'dev' : [
7575 'check-manifest' ,
76- 'pre-commit' ]},
76+ 'pre-commit' ,
77+ 'bump2version' ]},
7778)
You can’t perform that action at this time.
0 commit comments