diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a22d202..1e54da6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.7 +current_version = 0.2.8 files = setup.py alea/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index be26957..516b51f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,10 @@ +0.2.8 / 2024-08-26 +------------------ +* Fix OSG submission by @hammannr in https://github.com/XENONnT/alea/pull/189 + + +**Full Changelog**: https://github.com/XENONnT/alea/compare/v0.2.7...v0.2.8 + 0.2.7 / 2024-08-07 ------------------ * Trigger PyPI workflow on "published" by @hammannr in https://github.com/XENONnT/alea/pull/185 diff --git a/alea/__init__.py b/alea/__init__.py index 3b21f41..e5455d3 100644 --- a/alea/__init__.py +++ b/alea/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.7" +__version__ = "0.2.8" from .parameters import * diff --git a/setup.py b/setup.py index c450af9..91e16f0 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def open_requirements(path): setuptools.setup( name="alea-inference", - version="0.2.7", + version="0.2.8", description="A tool to perform toyMC-based inference constructions", author="Alea contributors, the XENON collaboration", long_description=readme + "\n\n" + history,