Skip to content

Commit

Permalink
Prepare 0.2.0a9
Browse files Browse the repository at this point in the history
  • Loading branch information
dgw committed Apr 30, 2019
1 parent ab383d0 commit 201dbff
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
==================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion sopel_modules/github/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

__author__ = 'maxpowa'
__email__ = '[email protected]'
__version__ = '0.2.0a8'
__version__ = '0.2.0a9'
__repo__ = 'https://github.com/sopel-irc/sopel-github'

0 comments on commit 201dbff

Please sign in to comment.