From b2b9d185add7ae4b2e6a3cf19276965b84cf9d9a Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Mon, 29 May 2017 17:52:07 +0000 Subject: [PATCH] =?UTF-8?q?v0.1.1=20=E2=80=94=20Fix=20PendingDeprecationWa?= =?UTF-8?q?rning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove a `PendingDeprecationWarning` generated in newer versions of Python 3.5 and 3.6 - More testing infrastructure - PyPy now supported --- CHANGELOG.rst | 4 ++-- linesep.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2b8d462..5be5ef4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -v0.2.0 (in development) ------------------------ +v0.1.1 (2017-05-29) +------------------- - Remove a ``PendingDeprecationWarning`` generated in newer versions of Python 3.5 and 3.6 - More testing infrastructure diff --git a/linesep.py b/linesep.py index b8dc9a7..3fe550b 100644 --- a/linesep.py +++ b/linesep.py @@ -10,7 +10,7 @@ Visit for more information. """ -__version__ = '0.2.0.dev1' +__version__ = '0.1.1' __author__ = 'John Thorvald Wodder II' __author_email__ = 'linesep@varonathe.org' __license__ = 'MIT'