From 0a77129efc4640184cca29fb124525b6fa352ad5 Mon Sep 17 00:00:00 2001 From: Martin Majlis Date: Sat, 4 Jan 2025 23:10:12 +0100 Subject: [PATCH] Update version to 0.7.2 for new release. --- CHANGES.rst | 6 ++++++ conf.py | 2 +- setup.py | 2 +- wikipediaapi/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index aa4ec67..1d882cf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog ========= +0.7.2 +----- + +* Add support for Python 3.13 +* Regenerate stable documentation + 0.7.1 ----- diff --git a/conf.py b/conf.py index 0faeaf6..d6d3404 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.1" +release = "0.7.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 bdaaf3c..9ffe59b 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def fix_doc(txt): setup( name="Wikipedia-API", - version="0.7.1", + version="0.7.2", description="Python Wrapper for Wikipedia", long_description=README + "\n\n" + CHANGES, classifiers=[ diff --git a/wikipediaapi/__init__.py b/wikipediaapi/__init__.py index 5522182..ac9633d 100644 --- a/wikipediaapi/__init__.py +++ b/wikipediaapi/__init__.py @@ -6,7 +6,7 @@ cases. """ -__version__ = (0, 7, 1) +__version__ = (0, 7, 2) from collections import defaultdict from enum import IntEnum