Skip to content

Commit 15b6455

Browse files
committed
Update version to 0.6.6 for new release.
1 parent dadacba commit 15b6455

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.github/workflows/deploy.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,19 @@ jobs:
8989
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
9090
# alternatively, to publish when a GitHub Release is created, use the following rule:
9191
# if: github.event_name == 'release' && github.event.action == 'published'
92+
environment:
93+
name: pypi
94+
url: https://pypi.org/p/<your-pypi-project-name>
95+
permissions:
96+
id-token: write
9297
steps:
9398
- uses: actions/download-artifact@v4
9499
with:
95100
pattern: Wikipedia-api-*
96101
path: dist
97102
- name: Display structure of downloaded files
98103
run: ls -R
99-
100-
- uses: pypa/gh-action-pypi-publish@release/v1
104+
- uses: pypa/[email protected]
101105
with:
102-
user: __token__
103-
password: ${{ secrets.pypi_password }}
104-
# To test: repository_url: https://test.pypi.org/legacy/
106+
verbose: true
107+
print-hash: true

CHANGES.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
0.6.5
4+
0.6.6
55
-----
66

77
* Update dependencies

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = "0.6"
6363
# The full version, including alpha/beta/rc tags.
64-
release = "0.6.5"
64+
release = "0.6.6"
6565

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def fix_doc(txt):
2727

2828
setup(
2929
name="Wikipedia-API",
30-
version="0.6.5",
30+
version="0.6.6",
3131
description="Python Wrapper for Wikipedia",
3232
long_description=README + "\n\n" + CHANGES,
3333
classifiers=[

wikipediaapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
cases.
77
"""
88

9-
__version__ = (0, 6, 5)
9+
__version__ = (0, 6, 6)
1010
from collections import defaultdict
1111
from enum import IntEnum
1212
import logging

0 commit comments

Comments
 (0)