Skip to content

Commit 8b2cc9f

Browse files
committed
Update version to 0.11.0 for new release.
1 parent 05ec78c commit 8b2cc9f

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
0.11.0
5+
------
6+
7+
* Introduce async support - `AsyncWikipedia` - `PR 479`_
8+
9+
.. _PR 502: https://github.com/martin-majlis/Wikipedia-API/pull/479
10+
411
0.10.2
512
------
613

conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
# built documents.
6666
#
6767
# The short X.Y version.
68-
version = "0.10"
68+
version = "0.11"
6969
# The full version, including alpha/beta/rc tags.
70-
release = "0.10.2"
70+
release = "0.11.0"
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "Wikipedia-API"
7-
version = "0.10.2"
7+
version = "0.11.0"
88
description = "Python Wrapper for Wikipedia"
99
readme = {file = "README_processed.rst", content-type = "text/x-rst"}
1010
license = {text = "MIT"}

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wikipediaapi/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information for Wikipedia-API."""
22

3-
__version__ = (0, 10, 2)
3+
__version__ = (0, 11, 0)
44
__version_str__ = ".".join(str(s) for s in __version__)

0 commit comments

Comments
 (0)