From 37bbe61267520755fcf7500d8951f807aa0e1ba0 Mon Sep 17 00:00:00 2001 From: James Brown Date: Wed, 2 Oct 2019 23:15:21 +0000 Subject: [PATCH] bump to version 0.6.0 --- docs/source/CHANGES.rst | 2 +- pystalk/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/CHANGES.rst b/docs/source/CHANGES.rst index 228135f..6b92c52 100644 --- a/docs/source/CHANGES.rst +++ b/docs/source/CHANGES.rst @@ -3,7 +3,7 @@ pystalk ChangeLog ################# ==== -NEXT +0.6.0 ==== * add compatibility for `attrs` 19.2.0 and above * drop support for Python 3.3.x diff --git a/pystalk/__init__.py b/pystalk/__init__.py index 920e773..a3769d1 100644 --- a/pystalk/__init__.py +++ b/pystalk/__init__.py @@ -1,6 +1,6 @@ from .client import BeanstalkClient, BeanstalkError -version_info = (0, 5, 1) +version_info = (0, 6, 0) __version__ = '.'.join(str(s) for s in version_info) __author__ = 'EasyPost ' diff --git a/setup.py b/setup.py index 8d0cce6..94c269e 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="pystalk", - version="0.5.1", + version="0.6.0", author="EasyPost", author_email="oss@easypost.com", url="https://github.com/easypost/pystalk",