Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,7 @@ jobs:
tar xf "${{ needs.pre-commit.outputs.dist-base }}/openslide_python-${version}.tar"
xz -9 "${{ needs.pre-commit.outputs.dist-base }}/openslide_python-${version}.tar"
# extract changelog
awk -e '/^## / && ok {exit}' \
-e '/^## / {ok=1; next}' \
-e 'ok {print}' \
awk '/^## / && ok {exit} /^## / {ok=1; next} ok {print}' \
"openslide_python-$version/CHANGELOG.md" > changes
# create release; upload artifacts but not *.publish.attestation
# files created by gh-action-pypi-publish
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Notable Changes in OpenSlide Python

## Version 1.4.4, 2026-06-07
## Version 1.4.5, 2026-06-07

### Changes

Expand Down
2 changes: 1 addition & 1 deletion openslide/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
This module is an implementation detail. The package version should be
obtained from openslide.__version__."""

__version__ = '1.4.4'
__version__ = '1.4.5'
Loading