From 5619856b15b4675c70850781ac98a4075aa05dcc Mon Sep 17 00:00:00 2001 From: dgw Date: Mon, 2 Dec 2019 22:43:33 -0600 Subject: [PATCH] Release 0.2.4 --- NEWS | 8 ++++++++ setup.py | 2 +- sopel_modules/github/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 5046266..b3ea45d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,11 @@ +Changes in 0.2.4 +================ + +Fixed: +* Comments with trailing whitespace incorrectly had `[…]` appended even if the + body contained only one line of (non-quoted) text (#50) + + Changes in 0.2.3 ================ diff --git a/setup.py b/setup.py index 8a8cd99..de9cfa1 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='sopel_modules.github', - version='0.2.3', + version='0.2.4', description='GitHub module for Sopel', long_description=readme + '\n\n' + history, long_description_content_type='text/markdown', diff --git a/sopel_modules/github/__init__.py b/sopel_modules/github/__init__.py index 4e3a8bb..5a42dd8 100644 --- a/sopel_modules/github/__init__.py +++ b/sopel_modules/github/__init__.py @@ -10,6 +10,6 @@ __author__ = 'maxpowa' __email__ = 'maxpowa@outlook.com' __maintainer__ = 'dgw' -__version__ = '0.2.3' +__version__ = '0.2.4' __repo__ = 'https://github.com/sopel-irc/sopel-github'