diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0fa0334f..0f761784 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 files = setup.py alea/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 0380f864..4321da1f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,29 @@ +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 +* Update readthedocs configurations by @dachengx in https://github.com/XENONnT/alea/pull/88 +* Update tutorials by @hammannr in https://github.com/XENONnT/alea/pull/89 +* Add column to toyMC results with minuit convergence flag by @kdund in https://github.com/XENONnT/alea/pull/91 +* Debug a typo at docstring of fittable parameter by @dachengx in https://github.com/XENONnT/alea/pull/95 +* Improve documentation by @hammannr in https://github.com/XENONnT/alea/pull/101 +* Update Neyman threshold when changing runner_args by @hammannr in https://github.com/XENONnT/alea/pull/100 +* Allow submitter to skip the already succeeded files by @dachengx in https://github.com/XENONnT/alea/pull/94 +* Print time usage of `Runner.run` by @dachengx in https://github.com/XENONnT/alea/pull/104 +* Get expectation values per likelihood term by @hammannr in https://github.com/XENONnT/alea/pull/106 +* Prevent arguments to submission variations being changed by deepcopy-ing them. by @dachengx in https://github.com/XENONnT/alea/pull/107 +* Make error message more explicit that an excecutable is not found and… by @kdund in https://github.com/XENONnT/alea/pull/109 +* Read poi and expectation directly from `output_filename` to accelerate `NeymanConstructor` by @dachengx in https://github.com/XENONnT/alea/pull/108 +* Direct call of used parameters of model by @dachengx in https://github.com/XENONnT/alea/pull/112 +* Add function to get all sources names from all likelihoods by @dachengx in https://github.com/XENONnT/alea/pull/111 +* Make sure values of parameters that need re-initialization are not changed by @hammannr in https://github.com/XENONnT/alea/pull/110 +* Allow all computation names by @kdund in https://github.com/XENONnT/alea/pull/116 +* Debug for the missing argument in `_read_poi` by @dachengx in https://github.com/XENONnT/alea/pull/118 +* Remove unnecessary warning given new ptype constraints by @dachengx in https://github.com/XENONnT/alea/pull/119 + + +**Full Changelog**: https://github.com/XENONnT/alea/compare/v0.2.0...v0.2.1 + + 0.2.0 / 2023-09-01 ------------------ * Proposal to use pre-commit for continuous integration by @dachengx in https://github.com/XENONnT/alea/pull/78 diff --git a/alea/__init__.py b/alea/__init__.py index 7986277f..a51ededf 100644 --- a/alea/__init__.py +++ b/alea/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" from .parameters import * diff --git a/setup.py b/setup.py index 376b3b74..249e8c49 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def open_requirements(path): setuptools.setup( name="alea-inference", - version="0.2.0", + version="0.2.1", description="A tool to perform toyMC-based inference constructions", author="Alea contributors, the XENON collaboration", long_description=readme + "\n\n" + history,