Skip to content

Commit

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

0.7.2
-----

* Add support for Python 3.13
* Regenerate stable documentation

0.7.1
-----

Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.1",
version="0.7.2",
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, 1)
__version__ = (0, 7, 2)

from collections import defaultdict
from enum import IntEnum
Expand Down

0 comments on commit 0a77129

Please sign in to comment.