diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6ab04f70..89399131 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.3 +current_version = 0.2.4 files = setup.py alea/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 5a8f867e..fd862ee9 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,15 @@ +0.2.4 / 2024-03-18 +------------------ +* Point away from alea for physics models by @kdund in https://github.com/XENONnT/alea/pull/143 +* Make "piecewise" the default pdf interpolation by @hammannr in https://github.com/XENONnT/alea/pull/142 +* Enforce bins in config and template to match by @hammannr in https://github.com/XENONnT/alea/pull/144 +* Make model histograms accessible by @hammannr in https://github.com/XENONnT/alea/pull/140 +* Make local submitter verbose by @hammannr in https://github.com/XENONnT/alea/pull/146 +* Estimator of signal multiplier based on perturbation theory by @zihaoxu98 in https://github.com/XENONnT/alea/pull/147 + +**Full Changelog**: https://github.com/XENONnT/alea/compare/v0.2.3...v0.2.4 + + 0.2.3 / 2024-02-22 ------------------ * Improve check of already made toydata and output by @dachengx in https://github.com/XENONnT/alea/pull/128 diff --git a/alea/__init__.py b/alea/__init__.py index 268d5afd..11d8efc8 100644 --- a/alea/__init__.py +++ b/alea/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.3" +__version__ = "0.2.4" from .parameters import * diff --git a/setup.py b/setup.py index f8098f7e..dfa4233f 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def open_requirements(path): setuptools.setup( name="alea-inference", - version="0.2.3", + version="0.2.4", description="A tool to perform toyMC-based inference constructions", author="Alea contributors, the XENON collaboration", long_description=readme + "\n\n" + history,