From 5688c8e93703fdca4e37d180a81889cda9e5f493 Mon Sep 17 00:00:00 2001 From: Martin Majlis Date: Sat, 24 Aug 2024 15:54:18 +0200 Subject: [PATCH] Update version to 0.7.0 for new release. --- conf.py | 4 ++-- setup.py | 2 +- wikipediaapi/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conf.py b/conf.py index 9b7e582..fc023e0 100644 --- a/conf.py +++ b/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = "0.6" +version = "0.7" # The full version, including alpha/beta/rc tags. -release = "0.6.9" +release = "0.7.0" # 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 a4ab034..8e366a7 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def fix_doc(txt): setup( name="Wikipedia-API", - version="0.6.9", + version="0.7.0", description="Python Wrapper for Wikipedia", long_description=README + "\n\n" + CHANGES, classifiers=[ diff --git a/wikipediaapi/__init__.py b/wikipediaapi/__init__.py index e5a6201..671e288 100644 --- a/wikipediaapi/__init__.py +++ b/wikipediaapi/__init__.py @@ -6,7 +6,7 @@ cases. """ -__version__ = (0, 6, 9) +__version__ = (0, 7, 0) from collections import defaultdict from enum import IntEnum