From 8a8a87f59aa7e5931e00bef6dc81a8c8bc2fecbf Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Sun, 3 Jul 2022 19:49:26 -0400 Subject: [PATCH] Bump version for 1.8.0 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 7d3f0da7e..745f27dd2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.3.dev0 +current_version = 1.8.0 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 b0fa2a6d5..d168ec87b 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.3.dev0 +version: 1.8.0 url: "https://github.com/jobovy/galpy" preferred-citation: type: article diff --git a/doc/source/conf.py b/doc/source/conf.py index 98a147bc3..405072278 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -89,7 +89,7 @@ def linkcode_resolve(domain, info): # built documents. # # The short X.Y version. -version = '1.7.3.dev0' +version = '1.8.0' # 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 66db2bf18..1ab9c5e07 100644 --- a/galpy/__init__.py +++ b/galpy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.7.3.dev0" +__version__ = "1.8.0" # Check whether a new version is available import sys import datetime diff --git a/setup.py b/setup.py index e6bc85b05..da68f286f 100644 --- a/setup.py +++ b/setup.py @@ -259,7 +259,7 @@ def build_extensions(self): setup(cmdclass=dict(build_ext=BuildExt), # this to allow compiler check above name='galpy', - version='1.7.3.dev0', + version='1.8.0', description='Galactic Dynamics in python', author='Jo Bovy', author_email='bovy@astro.utoronto.ca',