From c9edc6bf905ff33e38c0f475e855b3d866d72dcd Mon Sep 17 00:00:00 2001 From: Robert Grant Date: Fri, 8 May 2020 12:00:11 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.0=20=E2=86=92=200.7.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 5 +++++ setup.cfg | 2 +- setup.py | 2 +- tsplib95/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9075ff2..e93ee07 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +0.7.1 (2020-05-08) +------------------ + +* Bugfix for ``StandardProblem.get_nodes`` ignoring node indices specified in demands + 0.7.0 (2020-04-18) ------------------ diff --git a/setup.cfg b/setup.cfg index 3d83e79..6c75b2a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.7.1 commit = True tag = True diff --git a/setup.py b/setup.py index 2bbb198..f758534 100644 --- a/setup.py +++ b/setup.py @@ -56,6 +56,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/rhgrant10/tsplib95', - version='0.7.0', + version='0.7.1', zip_safe=True, ) diff --git a/tsplib95/__init__.py b/tsplib95/__init__.py index 2d09be9..b170532 100644 --- a/tsplib95/__init__.py +++ b/tsplib95/__init__.py @@ -4,7 +4,7 @@ __author__ = """Robert Grant""" __email__ = 'rhgrant10@gmail.com' -__version__ = '0.7.0' +__version__ = '0.7.1' from . import bisep # noqa: F401