From 5509e260b3fdeca510d593755b0496e19ae2bd54 Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Fri, 1 Nov 2024 11:30:48 -0400 Subject: [PATCH] Release 1.10.1 (#686) --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- HISTORY.txt | 2 +- doc/source/conf.py | 2 +- galpy/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0332eb529..e5317edc7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.10.1.dev0 +current_version = 1.10.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 a116e3709..56292bc89 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.10.1.dev0 +version: 1.10.1 url: "https://github.com/jobovy/galpy" preferred-citation: type: article diff --git a/HISTORY.txt b/HISTORY.txt index e9b57185c..edfe5f1c9 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,4 +1,4 @@ -v1.10.1 (Expected around 2024-11-01) +v1.10.1 (2024-11-01) ==================== - Propagate general plotting keywords in Potential.plot/plotPotentials. Also allow diff --git a/doc/source/conf.py b/doc/source/conf.py index ffad144d4..4a3d7c9c3 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -126,7 +126,7 @@ def linkcode_resolve(domain, info): # built documents. # # The short X.Y version. -version = "1.10.1.dev0" +version = "1.10.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 031fb1747..c54d15f40 100644 --- a/galpy/__init__.py +++ b/galpy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.10.1.dev0" +__version__ = "1.10.1" # Check whether a new version is available import datetime import http.client diff --git a/setup.py b/setup.py index 16009de01..621d82cac 100644 --- a/setup.py +++ b/setup.py @@ -277,7 +277,7 @@ def build_extensions(self): setup( cmdclass=dict(build_ext=BuildExt), # this to allow compiler check above name="galpy", - version="1.10.1.dev0", + version="1.10.1", description="Galactic Dynamics in python", author="Jo Bovy", author_email="bovy@astro.utoronto.ca",