From eaf206dbb3010d766fbef702cdc5468bae67db4d Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Sat, 4 May 2024 10:03:47 +0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.6.2=20=E2=86=92=201.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- NEWS | 2 +- queuelib/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b9b8f36..08e4da3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.2 +current_version = 1.7.0 commit = True tag = True tag_name = v{new_version} diff --git a/NEWS b/NEWS index 5b0abdc..21d1ef5 100644 --- a/NEWS +++ b/NEWS @@ -3,7 +3,7 @@ Queuelib release notes Version 1.7.0 ------------- -(released on XXXX) +(released on May 4th, 2024) No functionality changes with respect to 1.6.2 diff --git a/queuelib/__init__.py b/queuelib/__init__.py index 263c513..e84a783 100644 --- a/queuelib/__init__.py +++ b/queuelib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.6.2" +__version__ = "1.7.0" from queuelib.pqueue import PriorityQueue from queuelib.queue import FifoDiskQueue, LifoDiskQueue diff --git a/setup.py b/setup.py index a9e0e3d..c7179f0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="queuelib", - version="1.6.2", + version="1.7.0", license="BSD", description="Collection of persistent (disk-based) and non-persistent (memory-based) queues", long_description=open("README.rst").read(),