Skip to content

Commit ce747f5

Browse files
committed
update rust ->1.76
clean up workspace
1 parent f8d34f7 commit ce747f5

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: windows-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Build wheels
1616
uses: PyO3/maturin-action@v1
1717
with:
18-
rust-toolchain: 1.75.0
18+
rust-toolchain: 1.76.0
1919
command: build
2020
args: -m zbl_py/Cargo.toml --release -o dist --find-interpreter
2121
- name: Upload artifacts
22-
uses: actions/upload-artifact@v3
22+
uses: actions/upload-artifact@v4
2323
with:
2424
name: dist
2525
path: dist
@@ -29,17 +29,17 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Get artifacts
32-
uses: actions/download-artifact@v2
32+
uses: actions/download-artifact@v4
3333
with:
3434
name: dist
3535
path: dist
3636
- name: Release
37-
uses: softprops/action-gh-release@v1
37+
uses: softprops/action-gh-release@v2
3838
if: startsWith(github.ref, 'refs/tags/')
3939
with:
4040
files: dist/*
4141
- name: Publish package to PyPI
4242
if: startsWith(github.ref, 'refs/tags')
43-
uses: pypa/gh-action-pypi-publish@release/v1
43+
uses: pypa/softprops/action-gh-release@release/v1
4444
with:
4545
password: ${{ secrets.PYPI_API_TOKEN }}

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[workspace]
22
members = ["zbl", "zbl_py"]
33
resolver = "2"
4+
5+
[workspace.package]
6+
version = "0.1.3"

zbl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zbl"
3-
version = "0.1.3"
3+
version.workspace = true
44
edition = "2021"
55

66
[lib]

zbl_py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zbl_py"
3-
version = "0.1.2"
3+
version.workspace = true
44
edition = "2021"
55

66
[lib]

zbl_py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "zbl"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
readme = "../README.md"
55
requires-python = ">=3.7"
66
license = { file = "../LICENSE.txt" }

0 commit comments

Comments
 (0)