diff --git a/CHANGES.rst b/CHANGES.rst index 8693876..9e8e1e1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog ========= +0.6.2 +----- + +* Update dependencies +* Add tests for more platforms + 0.6.0 ----- diff --git a/conf.py b/conf.py index 086968a..0fb4f6a 100644 --- a/conf.py +++ b/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. version = "0.6" # The full version, including alpha/beta/rc tags. -release = "0.6.0" +release = "0.6.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 1c58319..5870fd7 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def fix_doc(txt): setup( name="Wikipedia-API", - version="0.6.0", + version="0.6.2", description="Python Wrapper for Wikipedia", long_description=README + "\n\n" + CHANGES, classifiers=[ diff --git a/wikipediaapi/__init__.py b/wikipediaapi/__init__.py index f5c3ff1..d359801 100644 --- a/wikipediaapi/__init__.py +++ b/wikipediaapi/__init__.py @@ -6,7 +6,7 @@ cases. """ -__version__ = (0, 6, 0) +__version__ = (0, 6, 2) from collections import defaultdict from enum import IntEnum import logging