Skip to content

Commit 81d4639

Browse files
committed
Fix version bump
1 parent 73b3039 commit 81d4639

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ doi: "10.5281/zenodo.1090388"
2727
license: "BSD-3-Clause"
2828
message: "If you use this software, please cite it using these metadata."
2929
title: Instamatic
30-
version: "2.0.2"
30+
version: "2.1.0"
3131
...

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
66
[project]
77
name = "instamatic"
8-
version = "2.0.5"
8+
version = "2.1.0"
99
description = "Python program for automated electron diffraction data collection"
1010
readme = "readme.md"
1111
requires-python = ">=3.7"
@@ -66,7 +66,7 @@ changelog = "https://github.com/instamatic-dev/instamatic/releases"
6666

6767
[project.optional-dependencies]
6868
develop = [
69-
"bump2version",
69+
"bump-my-version",
7070
"check-manifest",
7171
"pre-commit",
7272
"pytest >= 5.4.1",
@@ -153,7 +153,7 @@ quote-style = "single"
153153
indent-style = "space"
154154

155155
[tool.bumpversion]
156-
current_version = "2.0.5"
156+
current_version = "2.1.0"
157157

158158
[[tool.bumpversion.files]]
159159
filename = "src/instamatic/__init__.py"
@@ -167,5 +167,5 @@ replace = "version = \"{new_version}\""
167167

168168
[[tool.bumpversion.files]]
169169
filename = "CITATION.cff"
170-
search = "version: {current_version}"
171-
replace = "version: {new_version}"
170+
search = "version: \"{current_version}\""
171+
replace = "version: \"{new_version}\""

src/instamatic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
1212
"""
1313

14-
__version__ = '2.0.5'
14+
__version__ = '2.1.0'
1515
__title__ = 'instamatic'
1616
__long_title__ = f'{__title__} v{__version__}'
1717
__author__ = 'Stef Smeets'

0 commit comments

Comments
 (0)