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/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 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.",