From e0c36cd4fc3fbaa246b075125552640a7d1e64f3 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Wed, 6 Mar 2024 16:22:58 +0800 Subject: [PATCH] Bump to v0.3.2 (#147) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 0.3.1 → 0.3.2 * bug fix --- .bumpversion.cfg | 2 +- HISTORY.md | 18 ++++++++++++++++++ appletree/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 33e35a5b..a6910e5a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 files = setup.py appletree/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 05af0d4f..08a6a2e8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,21 @@ +v0.3.2 / 2024-03-06 +------------------- +* Remove `scikit-learn` version requirement by @dachengx in https://github.com/XENONnT/appletree/pull/131 +* Use trusted publisher because username/password authentication is no longer supported by @dachengx in https://github.com/XENONnT/appletree/pull/132 +* Be compatible with `JAX_ENABLE_X64=1` by @dachengx in https://github.com/XENONnT/appletree/pull/134 +* Raise more information when file can not be found by @dachengx in https://github.com/XENONnT/appletree/pull/135 +* Preserve dtype of results in `multiple_simulations` by @dachengx in https://github.com/XENONnT/appletree/pull/137 +* Copy memory from GPU to CPU by @dachengx in https://github.com/XENONnT/appletree/pull/139 +* Bug fix when using `force_no_eff` with tuple `data_names` by @dachengx in https://github.com/XENONnT/appletree/pull/141 +* Add Gamma, Negative Binomial, and Generalized Poisson Distribution by @dachengx in https://github.com/XENONnT/appletree/pull/145 +* Add support for 1D fitting by @dachengx in https://github.com/XENONnT/appletree/pull/144 +* 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 + + v0.3.1 / 2024-01-12 ------------------- * Smarter SigmaMap handling and needed_parameters by @xzh19980906 in https://github.com/XENONnT/appletree/pull/116 diff --git a/appletree/__init__.py b/appletree/__init__.py index cac0b972..d38b64f9 100644 --- a/appletree/__init__.py +++ b/appletree/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.1" +__version__ = "0.3.2" # stop jax to preallocate memory import os diff --git a/setup.py b/setup.py index ccfd3f20..50176bda 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def open_requirements(path): setuptools.setup( name="appletree", - version="0.3.1", + version="0.3.2", description="A high-Performance Program simuLatEs and fiTs REsponse of xEnon.", author="Appletree contributors, the XENON collaboration", long_description=readme + "\n\n" + history,