From 3d4be5f71bb8d925d5a432e75df5ca16ecc2efb8 Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 16 Feb 2020 03:01:41 -0600 Subject: [PATCH] Release 0.2.1 --- NEWS | 63 +++++++++++++++++-------------- setup.py | 2 +- sopel_modules/twitter/__init__.py | 2 +- 3 files changed, 37 insertions(+), 30 deletions(-) diff --git a/NEWS b/NEWS index 6c26498..765b75b 100644 --- a/NEWS +++ b/NEWS @@ -1,28 +1,35 @@ -Changes between 0.1.2 and 0.2.0 -=============================== - -Changed: -* Now requires Sopel 7.x -* Newlines in tweet text will be replaced with a carriage return symbol, to - indicate author intention - -Added: -* Handling of 280-character tweets -* More graceful handling of API errors - -Meta: -* Package metadata updated (new maintainer, HTTPS links) - - -Changes between 0.1.1 and 0.1.2 -=============================== - -Added: -* Tweet link handling - - -Changes between 0.1.0 and 0.1.1 -=============================== - -Fixed: -* Unicode on Python 3 +Changes between 0.2.0 and 0.2.1 +=============================== + +Fixed: +* Some quoted tweets would cause `KeyError: 'text'` (#9) + + +Changes between 0.1.2 and 0.2.0 +=============================== + +Changed: +* Now requires Sopel 7.x (#8) +* Newlines in tweet text will be replaced with a carriage return symbol, to + indicate author intention (#4) + +Added: +* Handling of 280-character tweets (#4) +* More graceful handling of API errors (#6) + +Meta: +* Package metadata updated (new maintainer, HTTPS links) + + +Changes between 0.1.1 and 0.1.2 +=============================== + +Added: +* Tweet link handling + + +Changes between 0.1.0 and 0.1.1 +=============================== + +Fixed: +* Unicode on Python 3 diff --git a/setup.py b/setup.py index 8a90527..b1ed3de 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='sopel_modules.twitter', - version='0.2.0', + version='0.2.1', description='A Twitter module for Sopel', long_description=readme + '\n\n' + history, long_description_content_type='text/markdown', diff --git a/sopel_modules/twitter/__init__.py b/sopel_modules/twitter/__init__.py index 793cd24..0fe5c0a 100644 --- a/sopel_modules/twitter/__init__.py +++ b/sopel_modules/twitter/__init__.py @@ -9,5 +9,5 @@ __author__ = 'dgw' __email__ = 'dgw@technobabbl.es' -__version__ = '0.2.0' +__version__ = '0.2.1'