From 69cd32b5f6b4948fbbf85f4870fe0fc9e75a351c Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Thu, 14 Apr 2022 23:03:01 -0400 Subject: [PATCH] Release v1.7.2 --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- HISTORY.txt | 4 ++-- doc/source/conf.py | 2 +- galpy/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a2316775f..080f6f65d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0.dev0 +current_version = 1.7.2 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 367452d47..79a0ffc62 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.8.0.dev0 +version: 1.7.2 url: "https://github.com/jobovy/galpy" preferred-citation: type: article diff --git a/HISTORY.txt b/HISTORY.txt index 20a77062d..44785b0a9 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,5 +1,5 @@ -v1.8 (XXXX-XX-XX) -================= +v1.7.2 (2022-04-15) +=================== - Added NonInertialFrameForce, which provides the fictitious forces when integrating orbits in non-inertial frames. Arbitrary rotations diff --git a/doc/source/conf.py b/doc/source/conf.py index 4da59f748..f5be4fbce 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -47,7 +47,7 @@ # built documents. # # The short X.Y version. -version = '1.8.0.dev0' +version = '1.7.2' # 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 029203ef8..1db13ec2a 100644 --- a/galpy/__init__.py +++ b/galpy/__init__.py @@ -1 +1 @@ -__version__ = "1.8.0.dev0" +__version__ = "1.7.2" diff --git a/setup.py b/setup.py index 4db2e571a..8a7eaf152 100644 --- a/setup.py +++ b/setup.py @@ -252,7 +252,7 @@ def build_extensions(self): setup(cmdclass=dict(build_ext=BuildExt), # this to allow compiler check above name='galpy', - version='1.8.0.dev0', + version='1.7.2', description='Galactic Dynamics in python', author='Jo Bovy', author_email='bovy@astro.utoronto.ca',