From 4e9cea05dad78efc72a71cb0fd21d6b6ea6a140a Mon Sep 17 00:00:00 2001 From: James Brown Date: Wed, 24 Aug 2022 00:13:34 +0000 Subject: [PATCH] bump pystalk to v0.7.0 --- docs/source/CHANGES.rst | 4 ++-- pystalk/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/CHANGES.rst b/docs/source/CHANGES.rst index d7c94d1..facf818 100644 --- a/docs/source/CHANGES.rst +++ b/docs/source/CHANGES.rst @@ -3,8 +3,8 @@ pystalk ChangeLog ################# ===== -NEXT -====== +0.7.0 +===== * Drop support for Python < 3.6 * Add `pystalk.pool.ProductionPool` * Add some `typing` annotations diff --git a/pystalk/__init__.py b/pystalk/__init__.py index 9623f88..e290c0f 100644 --- a/pystalk/__init__.py +++ b/pystalk/__init__.py @@ -1,7 +1,7 @@ from .client import BeanstalkClient, BeanstalkError from .pool import ProductionPool -version_info = (0, 6, 1) +version_info = (0, 7, 0) __version__ = '.'.join(str(s) for s in version_info) __author__ = 'EasyPost ' diff --git a/setup.py b/setup.py index 1943071..917af52 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name="pystalk", - version="0.6.1", + version="0.7.0", author="EasyPost", author_email="oss@easypost.com", url="https://github.com/easypost/pystalk",