From 7aa10e3d001f1c3962a5827b2b445e57c1eabc64 Mon Sep 17 00:00:00 2001 From: Jelle Aalbers Date: Mon, 13 Feb 2023 11:49:04 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.1=20=E2=86=92=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- HISTORY.md | 6 ++++-- setup.py | 2 +- wimprates/__init__.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3b07970..6457615 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1 +current_version = 0.5.0 files = setup.py wimprates/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 6df7c16..421cf23 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,8 +5,10 @@ History 0.5.0 (2023-02-13) ------------------ - * Change default v0 from 220 to 238 km/s to match [current conventions](https://arxiv.org/abs/2105.00599) (#14) - * If no time is provided, spectra are calculated at a reference time (#14). + * Change default v_0 and v_pec to match [current conventions](https://arxiv.org/abs/2105.00599) (#14) + * If no time is provided, spectra are now calculated at a reference time (#14) + * Fix bug where user-specified halo models would not override v_0 (#14) + * Fix tests for numpy 1.24 (#15) 0.4.1 (2022-09-01) ------------------ diff --git a/setup.py b/setup.py index 7a808ad..d7e5d33 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name='wimprates', - version='0.4.1', + version='0.5.0', description='Differential rates of WIMP-nucleus scattering', long_description=readme + '\n\n' + history, long_description_content_type='text/markdown', diff --git a/wimprates/__init__.py b/wimprates/__init__.py index 08735a9..9878a28 100644 --- a/wimprates/__init__.py +++ b/wimprates/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.4.1' +__version__ = '0.5.0' from packaging import version if version.parse(__version__) < version.parse('0.6.0'):