From 201dbff170d0c1bd36ab8f40256515a044257c63 Mon Sep 17 00:00:00 2001 From: dgw Date: Tue, 30 Apr 2019 17:43:30 -0500 Subject: [PATCH] Prepare 0.2.0a9 --- NEWS | 16 ++++++++++++++++ setup.py | 2 +- sopel_modules/github/__init__.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index a9ef077..e098f6f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +Changes in 0.2.0a9 +================== + +Changed: +* URL regexes should be more faithful to GitHub's actual restrictions + * Neither usernames nor repo names can contain underscore (`_`), so we + shouldn't accept it + * Repo names can contain dot (`.`), which the old regex didn't allow + * Usernames have a maximum length, which we are now looking for + +Fixed: +* Unnecessary parentheses added in previous alpha release + * Apparently, `pip install --upgrade --pre` can install the wrong release, + making one's testing unreliable. + + Changes in 0.2.0a8 ================== diff --git a/setup.py b/setup.py index 91979eb..31d250b 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='sopel_modules.github', - version='0.2.0a8', + version='0.2.0a9', 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 4b128e6..48a0cc0 100644 --- a/sopel_modules/github/__init__.py +++ b/sopel_modules/github/__init__.py @@ -9,6 +9,6 @@ __author__ = 'maxpowa' __email__ = 'maxpowa@outlook.com' -__version__ = '0.2.0a8' +__version__ = '0.2.0a9' __repo__ = 'https://github.com/sopel-irc/sopel-github'