diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a8c4cb22..90fbf91b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -238,9 +238,9 @@ jobs: apt update -y && apt-get install -y libssl-dev openssl pkg-config fi - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.target }} path: dist windows: @@ -271,9 +271,9 @@ jobs: args: --release --out dist --find-interpreter sccache: 'true' - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.target }} path: dist macos_x86: @@ -300,9 +300,9 @@ jobs: args: --release --out dist --find-interpreter sccache: 'true' - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-mac-x86_64 path: dist macos_aarch64: @@ -329,9 +329,9 @@ jobs: args: --release --out dist --find-interpreter sccache: 'true' - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-mac-aarch64 path: dist sdist: @@ -352,7 +352,7 @@ jobs: command: sdist args: --out dist - name: Upload sdist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels path: dist @@ -366,8 +366,9 @@ jobs: environment: Publish needs: [linux, windows, macos_x86, macos_aarch64, sdist] steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: + pattern: wheels-* name: wheels - name: Publish to PyPI uses: PyO3/maturin-action@v1 diff --git a/Cargo.toml b/Cargo.toml index c544682a..05032b6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "c2pa-python" -version = "0.6.3" +version = "0.7.1" edition = "2021" authors = ["Gavin Peacock