diff --git a/NEWS b/NEWS index 7ffac6e..ce79bce 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +Changes in 0.3.2 +================ + +Fixed: +* Unhandled exception on linked issue/PR with empty description (#67) + + Changes in 0.3.1 ================ @@ -5,6 +12,7 @@ Fixed: * Use of deprecated method `bot.msg()` (#63) * Use of deprecated `bot.privileges` property (#64) + Changes in 0.3.0 ================ diff --git a/setup.py b/setup.py index a88e2fd..b0dd31f 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='sopel_modules.github', - version='0.3.1', + version='0.3.2', 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 2051d67..1f84243 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.3.1' +__version__ = '0.3.2' __repo__ = 'https://github.com/sopel-irc/sopel-github'