Skip to content

Commit 3e0d899

Browse files
committed
update version
1 parent 0d10367 commit 3e0d899

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ jobs:
9292
CIBW_SKIP: 'pp*'
9393
CIBW_ARCHS_MACOS: auto universal2
9494

95-
- uses: actions/upload-artifact@v3
95+
- uses: actions/upload-artifact@v4
9696
with:
9797
path: ./wheelhouse
98+
overwrite: true
9899

99100
build_sdist:
100101
needs: [tests]
@@ -117,20 +118,21 @@ jobs:
117118
- name: Build sdist
118119
run: python setup.py sdist
119120

120-
- uses: actions/upload-artifact@v3
121+
- uses: actions/upload-artifact@v4
121122
with:
122123
path: dist/*.tar.gz
124+
overwrite: true
123125

124126
upload_pypi:
125127
needs: [build_wheels, build_sdist]
126128
runs-on: ubuntu-latest
127129
steps:
128-
- uses: actions/download-artifact@v4.1.7
130+
- uses: actions/download-artifact@v4
129131
with:
130132
name: artifact
131133
path: dist
132134

133-
- uses: pypa/gh-action-pypi-publish@master
135+
- uses: pypa/gh-action-pypi-publish@release/v1
134136
with:
135137
user: ${{ secrets.PYPI_USERNAME }}
136138
password: ${{ secrets.PYPI_PASSWORD }}

vtzero/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""vtzero version."""
22

3-
__version__ = "0.0.1b4"
3+
__version__ = "0.0.1b5"

0 commit comments

Comments
 (0)