diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0f761784..c0cf0890 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 files = setup.py alea/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 4321da1f..0b4beeb3 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,15 @@ +0.2.2 / 2024-01-13 +------------------ +* Save dtype of `valid_fit` as bool by @dachengx in https://github.com/XENONnT/alea/pull/123 +* Optional setting of random seed for debugging by @dachengx in https://github.com/XENONnT/alea/pull/122 +* Tiny minor change on docstring by @dachengx in https://github.com/XENONnT/alea/pull/126 +* Change example filename extension by @kdund in https://github.com/XENONnT/alea/pull/93 +* Add axis_names to example templates by @hammannr in https://github.com/XENONnT/alea/pull/127 +* Evaluate `blueice_anchors` expression by @dachengx in https://github.com/XENONnT/alea/pull/124 +* Update pypi to use trusted publisher by @dachengx in https://github.com/XENONnT/alea/pull/130 +* Update versions of `blueice` and `inference-interface` by @dachengx in https://github.com/XENONnT/alea/pull/132 + + 0.2.1 / 2023-12-08 ------------------ * Add optional argument `degree_of_freedom` for `asymptotic_critical_value` by @dachengx in https://github.com/XENONnT/alea/pull/86 diff --git a/alea/__init__.py b/alea/__init__.py index a51ededf..cd52ae9e 100644 --- a/alea/__init__.py +++ b/alea/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.1" +__version__ = "0.2.2" from .parameters import * diff --git a/setup.py b/setup.py index 249e8c49..0510b326 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def open_requirements(path): setuptools.setup( name="alea-inference", - version="0.2.1", + version="0.2.2", description="A tool to perform toyMC-based inference constructions", author="Alea contributors, the XENON collaboration", long_description=readme + "\n\n" + history,