From 020999b18c6a4d0478c1fe5511c6c58dee9c9a29 Mon Sep 17 00:00:00 2001 From: dgw Date: Fri, 17 Sep 2021 11:30:56 -0500 Subject: [PATCH] Release 0.4.3 --- NEWS | 11 +++++++++++ setup.py | 2 +- sopel_modules/github/__init__.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 74bb41b..b96ed51 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +Changes in 0.4.3 +================ + +Changed: +* Skip trying to handle non-repo links, e.g. to topics (#97) + +Fixed: +* Issue comment handling tries to access state (#95) +* Error in cases where issue/PR body is empty (#98) + + Changes in 0.4.2 ================ diff --git a/setup.py b/setup.py index da79dd6..8d0882c 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='sopel_modules.github', - version='0.4.2', + version='0.4.3', description='GitHub plugin 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 6cf7452..faa9015 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.4.2' +__version__ = '0.4.3' __repo__ = 'https://github.com/sopel-irc/sopel-github'