diff --git a/NEWS b/NEWS index d062a76..725f33a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +Changes in 0.4.1 +================ + +Added: +* Include link to issue/PR in output when triggered by bare numeric reference + in chat (#85) + +Fixed: +* Double space in output of "self-assigned" webhook events (#80) + + Changes in 0.4.0 ================ diff --git a/setup.py b/setup.py index 6cfdce4..e0c9d5c 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='sopel_modules.github', - version='0.4.0', + version='0.4.1', 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 502ed3e..9c7e77a 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.0' +__version__ = '0.4.1' __repo__ = 'https://github.com/sopel-irc/sopel-github'