From 138a6081e2f96331130835949aa4dcb95b98ee62 Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Tue, 7 Mar 2023 11:14:46 -0500 Subject: [PATCH] Bump version to release --- .bumpversion.cfg | 2 +- CITATION.cff | 4 ++-- HISTORY.txt | 2 +- mwdust/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cba160d..88b320a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.dev0 +current_version = 1.3 parse = (?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? serialize = {major}.{minor}.{release}{dev} diff --git a/CITATION.cff b/CITATION.cff index 5fb9d81..b8633d5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,11 +1,11 @@ -cff-version: 1.3.dev0.0 +cff-version: 1.3.0 message: "If you use this software, please cite the Bovy et al. (2016) The Astrophysical Journal paper as given below." authors: - family-names: "Bovy" given-names: "Jo" orcid: "https://orcid.org/0000-0001-6855-442X" title: "mwdust" -version: 1.3.dev0 +version: 1.3 url: "https://github.com/jobovy/mwdust" preferred-citation: type: article diff --git a/HISTORY.txt b/HISTORY.txt index 0e3ce2c..1259ee8 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,4 +1,4 @@ -v1.3 (XXXX-XX-XX) +v1.3 (2023-03-07) ================== - Re-jiggered the way dust maps are downloaded. They are now downloaded diff --git a/mwdust/__init__.py b/mwdust/__init__.py index 2056b09..7e9302f 100644 --- a/mwdust/__init__.py +++ b/mwdust/__init__.py @@ -9,7 +9,7 @@ from mwdust.Combined19 import Combined19 from mwdust.Zero import Zero -__version__ = "1.3.dev0" +__version__ = "1.3" def download_all(test=False): diff --git a/setup.py b/setup.py index 3ff64d0..2db45a9 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ if not WIN32: install_requires.append('healpy') setup(name='mwdust', - version='1.3.dev0', + version='1.3', description='Dust in the Milky Way', author='Jo Bovy', author_email='bovy@astro.utoronto.ca',