Skip to content

Commit

Permalink
Bump to v0.3.2 (#147)
Browse files Browse the repository at this point in the history
* Update HISTORY.md

* Bump version: 0.3.1 → 0.3.2

* bug fix
  • Loading branch information
dachengx authored Mar 6, 2024
1 parent b064bda commit e0c36cd
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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
18 changes: 18 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion appletree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.1"
__version__ = "0.3.2"

# stop jax to preallocate memory
import os
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit e0c36cd

Please sign in to comment.