From 87209f74b5b55fe5c9c61fb932b159a78c67dca0 Mon Sep 17 00:00:00 2001 From: dachengx Date: Fri, 12 Jan 2024 08:01:08 -0600 Subject: [PATCH 1/2] Update HISTORY.md --- HISTORY.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 6d66ba6..9b5c05a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +v0.1.3 +================== +* Should throw error when count_density mode with x or y limit specified by @dachengx in #46 +* Fix location of sklearn's DistanceMetric by @dachengx in #48 + v0.1.2 ================== * Add colorbar switch, set 2D histogram x&y limit by @dachengx in #39 From acbabbc24b0807d5d937124e15eaaebbaa321d89 Mon Sep 17 00:00:00 2001 From: dachengx Date: Fri, 12 Jan 2024 08:04:04 -0600 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.1.2=20=E2=86=92=200.1.3?= 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 3faa383..6565216 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.1.3 files = setup.py GOFevaluation/__init__.py commit = True tag = True diff --git a/GOFevaluation/__init__.py b/GOFevaluation/__init__.py index 9c6a2a6..b3ed3d3 100644 --- a/GOFevaluation/__init__.py +++ b/GOFevaluation/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.1.2' +__version__ = '0.1.3' from .utils import * from .evaluator_base import * diff --git a/setup.py b/setup.py index 776ffaa..c9b1605 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setuptools.setup( name="GOFevaluation", - version="0.1.2", + version="0.1.3", author="GOFevaluation contributors, the XENON collaboration", description="Evaluate the Goodness-of-Fit(GoF) for binned or \ unbinned data.",