Skip to content

Commit

Permalink
Update version to 0.8.0 for new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-majlis committed Jan 18, 2025
1 parent b776ec1 commit 576bde5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

0.8.0
-----

* Allow specifying language variant - `Issue 209`_
* Allow passing additional parameters for API calls.
* This breaks the API since `variant` is now the third parameter.

.. _Issue 209: https://github.com/martin-majlis/Wikipedia-API/issues/209

0.7.3
-----

Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = "0.7"
version = "0.8"
# The full version, including alpha/beta/rc tags.
release = "0.7.3"
release = "0.8.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def fix_doc(txt):

setup(
name="Wikipedia-API",
version="0.7.3",
version="0.8.0",
description="Python Wrapper for Wikipedia",
long_description=README + "\n\n" + CHANGES,
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion wikipediaapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
cases.
"""

__version__ = (0, 7, 3)
__version__ = (0, 8, 0)

from collections import defaultdict
from enum import IntEnum
Expand Down

0 comments on commit 576bde5

Please sign in to comment.