Skip to content

Commit 576bde5

Browse files
committed
Update version to 0.8.0 for new release.
1 parent b776ec1 commit 576bde5

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGES.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

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+
413
0.7.3
514
-----
615

conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = "0.7"
61+
version = "0.8"
6262
# The full version, including alpha/beta/rc tags.
63-
release = "0.7.3"
63+
release = "0.8.0"
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def fix_doc(txt):
2727

2828
setup(
2929
name="Wikipedia-API",
30-
version="0.7.3",
30+
version="0.8.0",
3131
description="Python Wrapper for Wikipedia",
3232
long_description=README + "\n\n" + CHANGES,
3333
classifiers=[

wikipediaapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
cases.
77
"""
88

9-
__version__ = (0, 7, 3)
9+
__version__ = (0, 8, 0)
1010

1111
from collections import defaultdict
1212
from enum import IntEnum

0 commit comments

Comments
 (0)