From d39a4ed0932577fb7b6a9c26ae8e114f0a361a03 Mon Sep 17 00:00:00 2001 From: Garrett Wright Date: Fri, 24 Mar 2023 06:56:20 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.1=20=E2=86=92=200.11.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 4 ++-- docs/source/conf.py | 2 +- docs/source/index.rst | 2 +- setup.py | 2 +- src/aspire/__init__.py | 2 +- src/aspire/config_default.yaml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 110b7e038e..abcd3f4309 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.1 +current_version = 0.11.0 commit = True tag = True diff --git a/README.md b/README.md index e2280b26dc..6cd3797fb9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![codecov](https://codecov.io/gh/ComputationalCryoEM/ASPIRE-Python/branch/master/graph/badge.svg?token=3XFC4VONX0)](https://codecov.io/gh/ComputationalCryoEM/ASPIRE-Python) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5657281.svg)](https://doi.org/10.5281/zenodo.5657281) -# ASPIRE - Algorithms for Single Particle Reconstruction - v0.10.1 +# ASPIRE - Algorithms for Single Particle Reconstruction - v0.11.0 This is the Python version to supersede the [Matlab ASPIRE](https://github.com/PrincetonUniversity/aspire). @@ -20,7 +20,7 @@ For more information about the project, algorithms, and related publications ple Please cite using the following DOI. This DOI represents all versions, and will always resolve to the latest one. ``` -ComputationalCryoEM/ASPIRE-Python: v0.10.1 https://doi.org/10.5281/zenodo.5657281 +ComputationalCryoEM/ASPIRE-Python: v0.11.0 https://doi.org/10.5281/zenodo.5657281 ``` diff --git a/docs/source/conf.py b/docs/source/conf.py index a99fe4ef9d..8cc7672678 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -78,7 +78,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = version = "0.10.1" +release = version = "0.11.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/index.rst b/docs/source/index.rst index 4fec8d6e1d..5838779230 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,4 +1,4 @@ -Aspire v0.10.1 +Aspire v0.11.0 ============== Algorithms for Single Particle Reconstruction diff --git a/setup.py b/setup.py index f4c0a45f57..d0df2899bb 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def read(fname): setup( name="aspire", - version="0.10.1", + version="0.11.0", data_files=[ ("", ["src/aspire/config_default.yaml"]), ("", ["src/aspire/logging.conf"]), diff --git a/src/aspire/__init__.py b/src/aspire/__init__.py index bca0d39dfd..5fd1b36ca0 100644 --- a/src/aspire/__init__.py +++ b/src/aspire/__init__.py @@ -11,7 +11,7 @@ from aspire.exceptions import handle_exception # version in maj.min.bld format -__version__ = "0.10.1" +__version__ = "0.11.0" # Setup `confuse` config diff --git a/src/aspire/config_default.yaml b/src/aspire/config_default.yaml index 364e33b781..0faadb95e2 100644 --- a/src/aspire/config_default.yaml +++ b/src/aspire/config_default.yaml @@ -1,4 +1,4 @@ -version: 0.10.1 +version: 0.11.0 common: # numeric module to use - one of numpy/cupy numeric: numpy