From 2bd96ca4a92c80e58405d8b30e1cf4496fadd37f Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Wed, 17 Nov 2021 17:13:49 -0500 Subject: [PATCH] Bump version to release --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- doc/source/conf.py | 2 +- galpy/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 445a5efe6..5178d7a19 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.1.dev0 +current_version = 1.7.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? serialize = {major}.{minor}.{patch}.{release}{dev} diff --git a/CITATION.cff b/CITATION.cff index bb6b63551..df4f2264a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Jo" orcid: "https://orcid.org/0000-0001-6855-442X" title: "galpy" -version: 1.7.1.dev0 +version: 1.7.1 url: "https://github.com/jobovy/galpy" preferred-citation: type: article diff --git a/doc/source/conf.py b/doc/source/conf.py index 7318831bc..db869a390 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -47,7 +47,7 @@ # built documents. # # The short X.Y version. -version = '1.7.1.dev0' +version = '1.7.1' # The full version, including alpha/beta/rc tags. release = version on_rtd = os.environ.get('READTHEDOCS', None) == 'True' diff --git a/galpy/__init__.py b/galpy/__init__.py index 66ed119e3..3c1e9cbd3 100644 --- a/galpy/__init__.py +++ b/galpy/__init__.py @@ -1 +1 @@ -__version__ = "1.7.1.dev0" +__version__ = "1.7.1" diff --git a/setup.py b/setup.py index 879c410c8..07aac5b4c 100644 --- a/setup.py +++ b/setup.py @@ -243,7 +243,7 @@ def build_extensions(self): setup(cmdclass=dict(build_ext=BuildExt), # this to allow compiler check above name='galpy', - version='1.7.1.dev0', + version='1.7.1', description='Galactic Dynamics in python', author='Jo Bovy', author_email='bovy@astro.utoronto.ca',