File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
17
Changes in 0.2.0a8
2
18
==================
3
19
Original file line number Diff line number Diff line change 27
27
28
28
setup (
29
29
name = 'sopel_modules.github' ,
30
- version = '0.2.0a8 ' ,
30
+ version = '0.2.0a9 ' ,
31
31
description = 'GitHub module for Sopel' ,
32
32
long_description = readme + '\n \n ' + history ,
33
33
long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 9
9
10
10
__author__ = 'maxpowa'
11
11
__email__ = 'maxpowa@outlook.com'
12
- __version__ = '0.2.0a8 '
12
+ __version__ = '0.2.0a9 '
13
13
__repo__ = 'https://github.com/sopel-irc/sopel-github'
14
14
You can’t perform that action at this time.
0 commit comments