Skip to content

Commit

Permalink
Update version to 0.6.7 for new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-majlis committed Mar 5, 2024
1 parent 15b6455 commit 0ab9a43
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,26 @@ jobs:
# if: github.event_name == 'release' && github.event.action == 'published'
environment:
name: pypi
url: https://pypi.org/p/<your-pypi-project-name>
url: https://pypi.org/p/Wikipedia-API
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
pattern: Wikipedia-api-*
path: dist
path: downloaded
- name: Display structure of downloaded files
run: ls -R
run: ls -lR downloaded
- name: Prepare distribution structure
run: |
mkdir -p dist
for f in $( find downloaded -type f );
d=$( dirname ${f} | rev | cut -d'/' -f 1 | rev );
cp -v ${f} dist/${d};
done
- name: Display structure of dist files
run: ls -lR dist
- uses: pypa/gh-action-pypi-publish@v1.8.12
with:
verbose: true
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.6.6
0.6.7
-----

* Update dependencies
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = "0.6"
# The full version, including alpha/beta/rc tags.
release = "0.6.6"
release = "0.6.7"

# 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.6.6",
version="0.6.7",
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, 6, 6)
__version__ = (0, 6, 7)
from collections import defaultdict
from enum import IntEnum
import logging
Expand Down

0 comments on commit 0ab9a43

Please sign in to comment.