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
18 changes: 17 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- v*

jobs:
pypi:
wheel:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -28,6 +28,22 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse
- name: Check build result
run: ls -lh wheelhouse/
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl

pypi:
needs: [wheel]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: wheelhouse/
merge-multiple: true
- name: Check download result
run: ls -lht wheelhouse/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
4 changes: 2 additions & 2 deletions libmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
__file__ as _libmc_so_file
)

__VERSION__ = "1.4.10"
__version__ = "1.4.10"
__VERSION__ = "1.4.11"
__version__ = "1.4.11"
__author__ = "mckelvin"
__email__ = "[email protected]"
__date__ = "Fri Jun 7 06:16:00 2024 +0800"
Expand Down
2 changes: 1 addition & 1 deletion src/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package golibmc

const _Version = "1.4.10"
const _Version = "1.4.11"
const _Author = "mckelvin"
const _Email = "[email protected]"
const _Date = "Fri Jun 7 06:16:00 2024 +0800"
Expand Down