From eb464387ebe498045986af2af3f57ee9dd7d5953 Mon Sep 17 00:00:00 2001 From: Tim Savannah Date: Tue, 23 Jul 2019 19:50:02 -0400 Subject: [PATCH] 4.0.1 --- nonblock/__init__.py | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nonblock/__init__.py b/nonblock/__init__.py index 41d33cd..8734cc3 100644 --- a/nonblock/__init__.py +++ b/nonblock/__init__.py @@ -1,5 +1,5 @@ ''' - Copyright (c) 2015-2016 Timothy Savannah under terms of LGPLv2. You should have received a copy of this LICENSE with this distribution. + Copyright (c) 2015-2016, 2017, 2019 Timothy Savannah under terms of LGPLv2. You should have received a copy of this LICENSE with this distribution. Contains pure-python functions for non-blocking IO in python ''' @@ -14,6 +14,6 @@ __all__ = ('nonblock_read', 'bgwrite', 'bgwrite_chunk', 'BackgroundIOPriority', 'bgread') -__version__ = '4.0.0' -__version_tuple = (4, 0, 0) +__version__ = '4.0.1' +__version_tuple = (4, 0, 1) diff --git a/setup.py b/setup.py index 8f1aa9a..5b6da34 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = summary setup(name='python-nonblock', - version='4.0.0', + version='4.0.1', packages=['nonblock'], author='Tim Savannah', author_email='kata198@gmail.com',