Skip to content

Commit a801749

Browse files
committed
Update version to 0.6.2 for new release.
1 parent a63adf3 commit a801749

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGES.rst

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

4+
0.6.2
5+
-----
6+
7+
* Update dependencies
8+
* Add tests for more platforms
9+
410
0.6.0
511
-----
612

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = "0.6"
6363
# The full version, including alpha/beta/rc tags.
64-
release = "0.6.0"
64+
release = "0.6.2"
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# 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.6.0",
30+
version="0.6.2",
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, 6, 0)
9+
__version__ = (0, 6, 2)
1010
from collections import defaultdict
1111
from enum import IntEnum
1212
import logging

0 commit comments

Comments
 (0)