Skip to content

Commit 677018a

Browse files
committed
2 parents d532218 + d35ce8e commit 677018a

File tree

6 files changed

+23
-4
lines changed

6 files changed

+23
-4
lines changed

.bumpversion.cfg

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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}'

citation.CFF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ keywords:
2828
- XDS
2929
- cluster-analysis
3030
license: BSD-3-Clause
31-
version: 1.0.2
31+
version: 1.0.4
3232
date-released: '2021-11-25'
3333
doi: 10.5281/zenodo.5727189

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def setup(app):
7474
author = '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.
8080
language = 'english'

edtools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.3'
1+
__version__ = '1.0.4'

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ openpyxl = ">=3.0.10"
4545
[tool.poetry.dev-dependencies]
4646
check-manifest = "*"
4747
pre-commit = "*"
48+
bump2version = "*"
4849

4950
[tool.poetry.scripts]
5051
"edtools.autoindex" = "edtools.autoindex:main"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,6 @@
7373
extras_require={
7474
'dev': [
7575
'check-manifest',
76-
'pre-commit']},
76+
'pre-commit',
77+
'bump2version']},
7778
)

0 commit comments

Comments
 (0)