File tree 4 files changed +13
-4
lines changed
4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 0.8.0
5
+ -----
6
+
7
+ * Allow specifying language variant - `Issue 209 `_
8
+ * Allow passing additional parameters for API calls.
9
+ * This breaks the API since `variant ` is now the third parameter.
10
+
11
+ .. _Issue 209 : https://github.com/martin-majlis/Wikipedia-API/issues/209
12
+
4
13
0.7.3
5
14
-----
6
15
Original file line number Diff line number Diff line change 58
58
# built documents.
59
59
#
60
60
# The short X.Y version.
61
- version = "0.7 "
61
+ version = "0.8 "
62
62
# The full version, including alpha/beta/rc tags.
63
- release = "0.7.3 "
63
+ release = "0.8.0 "
64
64
65
65
# The language for content autogenerated by Sphinx. Refer to documentation
66
66
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def fix_doc(txt):
27
27
28
28
setup (
29
29
name = "Wikipedia-API" ,
30
- version = "0.7.3 " ,
30
+ version = "0.8.0 " ,
31
31
description = "Python Wrapper for Wikipedia" ,
32
32
long_description = README + "\n \n " + CHANGES ,
33
33
classifiers = [
Original file line number Diff line number Diff line change 6
6
cases.
7
7
"""
8
8
9
- __version__ = (0 , 7 , 3 )
9
+ __version__ = (0 , 8 , 0 )
10
10
11
11
from collections import defaultdict
12
12
from enum import IntEnum
You can’t perform that action at this time.
0 commit comments