Skip to content

Commit e046ead

Browse files
authored
Merge pull request #355 from ComputationalCryoEM/bump_version_patch
Bump version patch
2 parents 385b729 + 93b1361 commit e046ead

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.bumpversion.cfg

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
[bumpversion]
2-
current_version = 0.6.0
2+
current_version = 0.6.1
33
commit = True
44
tag = True
55

66
[bumpversion:file:setup.py]
7-
search = version='{current_version}'
8-
replace = version='{new_version}'
7+
search = version="{current_version}"
8+
replace = version="{new_version}"
99

1010
[bumpversion:file:README.md]
1111
search = v{current_version}
1212
replace = v{new_version}
1313

1414
[bumpversion:file:src/aspire/__init__.py]
15-
search = __version__ = '{current_version}'
16-
replace = __version__ = '{new_version}'
15+
search = __version__ = "{current_version}"
16+
replace = __version__ = "{new_version}"
1717

1818
[bumpversion:file:docs/source/conf.py]
19-
search = release = version = '{current_version}'
20-
replace = release = version = '{new_version}'
19+
search = release = version = "{current_version}"
20+
replace = release = version = "{new_version}"
2121

2222
[bumpversion:file:docs/source/index.rst]
2323
search = v{current_version}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Travis Build Status](https://travis-ci.org/ComputationalCryoEM/ASPIRE-Python.svg?branch=master)](https://travis-ci.org/ComputationalCryoEM/ASPIRE-Python)
55
[![Coverage Status](https://coveralls.io/repos/github/ComputationalCryoEM/ASPIRE-Python/badge.svg?branch=master)](https://coveralls.io/github/ComputationalCryoEM/ASPIRE-Python?branch=master)
66

7-
# ASPIRE - Algorithms for Single Particle Reconstruction - v0.6.0
7+
# ASPIRE - Algorithms for Single Particle Reconstruction - v0.6.1
88

99
This is the Python version to supersede the [Matlab ASPIRE](https://github.com/PrincetonUniversity/aspire).
1010

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# built documents.
6363
#
6464
# The full version, including alpha/beta/rc tags.
65-
release = version = "0.6.0"
65+
release = version = "0.6.1"
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Aspire v0.6.0
1+
Aspire v0.6.1
22
==============
33

44
Algorithms for Single Particle Reconstruction

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def read(fname):
99

1010
setup(
1111
name="aspire",
12-
version="0.6.0",
12+
version="0.6.1",
1313
data_files=[
1414
("", ["src/aspire/config.ini"]),
1515
("", ["src/aspire/logging.conf"]),

src/aspire/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from aspire.exceptions import handle_exception
1111

1212
# version in maj.min.bld format
13-
__version__ = "0.6.0"
13+
__version__ = "0.6.1"
1414

1515
# Implements some code that writes out exceptions to 'aspire.err.log'.
1616
config = Config(read_text(aspire, "config.ini"))

0 commit comments

Comments
 (0)