diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ea80246..b20719b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 files = axidence/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 0247b9a..de8955a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,10 @@ +v0.3.2 / 2024-07-22 +------------------- +* Allow saving of isolated cut by @dachengx in https://github.com/XENONnT/axidence/pull/82 + +**Full Changelog**: https://github.com/XENONnT/axidence/compare/v0.3.1...v0.3.2 + + v0.3.1 / 2024-05-27 ------------------- * Remove unused plugin by @dachengx in https://github.com/XENONnT/axidence/pull/76 diff --git a/axidence/__init__.py b/axidence/__init__.py index f456de0..19a556b 100644 --- a/axidence/__init__.py +++ b/axidence/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.1" +__version__ = "0.3.2" from . import dtypes from .dtypes import * diff --git a/pyproject.toml b/pyproject.toml index 0c5dcdf..981a952 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "axidence" -version = "0.3.1" +version = "0.3.2" description = "strax-based data-driven accidental coincidence background simulation and peak-level salting" readme = "README.md" license = "BSD-3-Clause"