From 83d2f0dd39f5d113ab88ef3a537a5fbf87fef812 Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Fri, 13 Oct 2023 00:20:55 -0400 Subject: [PATCH] Bump version to next dev version --- .bumpversion.cfg | 2 +- CITATION.cff | 4 ++-- mwdust/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 82eefa0..b825001 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5 +current_version = 1.6.dev0 parse = (?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? serialize = {major}.{minor}.{release}{dev} diff --git a/CITATION.cff b/CITATION.cff index 8c33c94..6d89c34 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,11 +1,11 @@ -cff-version: 1.5.0 +cff-version: 1.6.dev0.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.5 +version: 1.6.dev0 url: "https://github.com/jobovy/mwdust" preferred-citation: type: article diff --git a/mwdust/__init__.py b/mwdust/__init__.py index f02a4c1..6f5595f 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.5" +__version__ = "1.6.dev0" def download_all(test=False): diff --git a/setup.py b/setup.py index af95a4a..421ec91 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ if not WIN32: install_requires.append('healpy') setup(name='mwdust', - version='1.5', + version='1.6.dev0', description='Dust in the Milky Way', author='Jo Bovy', author_email='bovy@astro.utoronto.ca',