diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0d6ee23b..3dc900c9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,7 +51,7 @@ jobs: - uses: actions/upload-artifact@v4.4.3 with: - name: wheels + name: macos_wheels path: ./dist/*.whl build_windows_wheels: @@ -78,7 +78,7 @@ jobs: run: bash ./.ci/build_wheels.sh - uses: actions/upload-artifact@v4.4.3 with: - name: wheels + name: windows_${{arch}}_wheels path: ./dist/*.whl build_linux_wheels: @@ -107,7 +107,7 @@ jobs: run: bash ./.ci/build_wheels.sh - uses: actions/upload-artifact@v4.4.3 with: - name: wheels + name: linux_${{arch}}_wheels path: ./dist/*.whl diff --git a/CHANGELOG.md b/CHANGELOG.md index f02ecd21..d5e2bf21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # `indexed_gzip` changelog +## 1.9.1 (November 15th 2024) + + +* Adjustments to CI configuration (#154). + + ## 1.9.0 (November 15th 2024) diff --git a/indexed_gzip/__init__.py b/indexed_gzip/__init__.py index c1422a4a..1682748d 100644 --- a/indexed_gzip/__init__.py +++ b/indexed_gzip/__init__.py @@ -19,4 +19,4 @@ """ -__version__ = '1.9.0' +__version__ = '1.9.1'