From cb56f6c8fdcf8d21bf821fb1836f4b2436e87252 Mon Sep 17 00:00:00 2001 From: Robert Hammann Date: Thu, 15 Feb 2024 19:01:56 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=200.1.3=20=E2=86=92=200.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- GOFevaluation/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6565216..87bfead 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 files = setup.py GOFevaluation/__init__.py commit = True tag = True diff --git a/GOFevaluation/__init__.py b/GOFevaluation/__init__.py index cd1d308..aeeb290 100644 --- a/GOFevaluation/__init__.py +++ b/GOFevaluation/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.3" +__version__ = "0.1.4" from .utils import * from .evaluator_base import * diff --git a/setup.py b/setup.py index 7761fec..eeed0ab 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name="GOFevaluation", - version="0.1.3", + version="0.1.4", author="GOFevaluation contributors, the XENON collaboration", description="Evaluate the Goodness-of-Fit(GOF) for binned or \ unbinned data.", From 17dcb895f3b0b98bf9e4a2af55e1885f090b8d21 Mon Sep 17 00:00:00 2001 From: Robert Hammann Date: Thu, 15 Feb 2024 19:05:07 +0100 Subject: [PATCH 2/2] update history --- HISTORY.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 9b5c05a..d985b2b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +v0.1.4 +================== +* Fix plotting of approximately equiprobable bins by @hammannr in https://github.com/XENONnT/GOFevaluation/pull/51 +* Use pre-commit CI by @hammannr in https://github.com/XENONnT/GOFevaluation/pull/52 + v0.1.3 ================== * Should throw error when count_density mode with x or y limit specified by @dachengx in #46