From 6d74bee67a4d034cf83e455ca9348737c26ca8b4 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Wed, 31 Jul 2024 16:58:07 +0800 Subject: [PATCH] Bump to v0.2.6 (#184) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 0.2.5 → 0.3.0 * v0.2.6 --- .bumpversion.cfg | 2 +- HISTORY.md | 12 ++++++++++-- alea/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 147fc07..12ac14e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.5 +current_version = 0.2.6 files = setup.py alea/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 1de85ef..0684941 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,12 @@ -## What's Changed +0.2.6 / 2024-07-31 +------------------ +* Defunctionalize `apply_efficiency`, apply efficiency when `efficiency_name` is specified by @dachengx in https://github.com/XENONnT/alea/pull/183 + +**Full Changelog**: https://github.com/XENONnT/alea/compare/v0.2.5...v0.3.0 + + +0.2.5 / 2024-07-30 +------------------ * Consistent sorting for BlueiceExtendedModel by @hammannr in https://github.com/XENONnT/alea/pull/149 * Fixed data storing by @hammannr in https://github.com/XENONnT/alea/pull/152 * Add lxml_html_clean to fix readthedocs building error by @zihaoxu98 in https://github.com/XENONnT/alea/pull/157 @@ -17,7 +25,7 @@ * Add 68% coverage as one of the defaults of `confidence_levels` by @dachengx in https://github.com/XENONnT/alea/pull/180 * Document to increase CPUs by @FaroutYLq in https://github.com/XENONnT/alea/pull/178 -## New Contributors +New Contributors * @FaroutYLq made their first contribution in https://github.com/XENONnT/alea/pull/170 **Full Changelog**: https://github.com/XENONnT/alea/compare/v0.2.4...v0.2.5 diff --git a/alea/__init__.py b/alea/__init__.py index 4ca3949..6435676 100644 --- a/alea/__init__.py +++ b/alea/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.5" +__version__ = "0.2.6" from .parameters import * diff --git a/setup.py b/setup.py index 87e1b97..b15f7f1 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def open_requirements(path): setuptools.setup( name="alea-inference", - version="0.2.5", + version="0.2.6", description="A tool to perform toyMC-based inference constructions", author="Alea contributors, the XENON collaboration", long_description=readme + "\n\n" + history,