From 53e944e74278b920a5f96aad85410c1b0d9ca284 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Sun, 30 Jun 2024 18:04:02 -0400 Subject: [PATCH] Bump to v0.5.0 (#172) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 0.4.0 → 0.5.0 --- .bumpversion.cfg | 2 +- HISTORY.md | 11 ++++++++++- appletree/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 98a4979..0470153 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.5.0 files = setup.py appletree/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 18fcdeb..3d8aca8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,13 @@ +v0.5.0 / 2024-06-30 +------------------- +* Nestv2 parameter by @zihaoxu98 in https://github.com/XENONnT/appletree/pull/167 +* Nearest neighbor interpolator by @zihaoxu98 in https://github.com/XENONnT/appletree/pull/168 +* Add 1D nearest neighbour and linear interpolator by @dachengx in https://github.com/XENONnT/appletree/pull/170 +* Fix software versions in tests by @dachengx in https://github.com/XENONnT/appletree/pull/171 + +**Full Changelog**: https://github.com/XENONnT/appletree/compare/v0.4.0...v0.5.0 + + v0.4.0 / 2024-05-27 ------------------- * Try using jax.random.binomial by @dachengx in https://github.com/XENONnT/appletree/pull/148 @@ -29,7 +39,6 @@ v0.3.2 / 2024-03-06 * Correct the sigmas in TwoHalfNorm by @zihaoxu98 in https://github.com/XENONnT/appletree/pull/143 * Plotter for MCMC diagnostics by @zihaoxu98 in https://github.com/XENONnT/appletree/pull/146 - **Full Changelog**: https://github.com/XENONnT/appletree/compare/v0.3.1...v0.3.2 diff --git a/appletree/__init__.py b/appletree/__init__.py index 2046a0d..4f71ef9 100644 --- a/appletree/__init__.py +++ b/appletree/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" # stop jax to preallocate memory import os diff --git a/setup.py b/setup.py index 367dea0..577c25c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def open_requirements(path): setuptools.setup( name="appletree", - version="0.4.0", + version="0.5.0", description="A high-Performance Program simuLatEs and fiTs REsponse of xEnon.", author="Appletree contributors, the XENON collaboration", long_description=readme + "\n\n" + history,