diff --git a/CHANGES.rst b/CHANGES.rst index 018f5c1..aa4ec67 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog ========= -0.7.0 +0.7.1 ----- * Drop support for Python 3.8 diff --git a/conf.py b/conf.py index fc023e0..0faeaf6 100644 --- a/conf.py +++ b/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = "0.7" # The full version, including alpha/beta/rc tags. -release = "0.7.0" +release = "0.7.1" # 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 8e366a7..2a7be36 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def fix_doc(txt): setup( name="Wikipedia-API", - version="0.7.0", + version="0.7.1", description="Python Wrapper for Wikipedia", long_description=README + "\n\n" + CHANGES, classifiers=[ diff --git a/wikipediaapi/__init__.py b/wikipediaapi/__init__.py index 671e288..5522182 100644 --- a/wikipediaapi/__init__.py +++ b/wikipediaapi/__init__.py @@ -6,7 +6,7 @@ cases. """ -__version__ = (0, 7, 0) +__version__ = (0, 7, 1) from collections import defaultdict from enum import IntEnum