Skip to content

Commit 201dbff

Browse files
committed
Prepare 0.2.0a9
1 parent ab383d0 commit 201dbff

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

NEWS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Changes in 0.2.0a9
2+
==================
3+
4+
Changed:
5+
* URL regexes should be more faithful to GitHub's actual restrictions
6+
* Neither usernames nor repo names can contain underscore (`_`), so we
7+
shouldn't accept it
8+
* Repo names can contain dot (`.`), which the old regex didn't allow
9+
* Usernames have a maximum length, which we are now looking for
10+
11+
Fixed:
12+
* Unnecessary parentheses added in previous alpha release
13+
* Apparently, `pip install --upgrade --pre` can install the wrong release,
14+
making one's testing unreliable.
15+
16+
117
Changes in 0.2.0a8
218
==================
319

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name='sopel_modules.github',
30-
version='0.2.0a8',
30+
version='0.2.0a9',
3131
description='GitHub module for Sopel',
3232
long_description=readme + '\n\n' + history,
3333
long_description_content_type='text/markdown',

sopel_modules/github/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
__author__ = 'maxpowa'
1111
__email__ = 'maxpowa@outlook.com'
12-
__version__ = '0.2.0a8'
12+
__version__ = '0.2.0a9'
1313
__repo__ = 'https://github.com/sopel-irc/sopel-github'
1414

0 commit comments

Comments
 (0)