diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eeec9c6..bd62010 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,12 @@ jobs: with: manylinux: auto command: build - args: --release --sdist -o dist --find-interpreter + args: --release --sdist -o target/dist --find-interpreter - name: Upload wheels uses: actions/upload-artifact@v2 with: name: wheels - path: dist + path: target/dist windows: runs-on: windows-latest diff --git a/Cargo.lock b/Cargo.lock index 1bf6f59..4d09545 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -343,7 +343,7 @@ dependencies = [ [[package]] name = "pyinferno" -version = "0.2.5" +version = "0.2.6" dependencies = [ "inferno", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index 51d440c..50db3c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyinferno" -version = "0.2.5" +version = "0.2.6" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html[lib] diff --git a/pyinferno/__init__.py b/pyinferno/__init__.py index b962f76..5eaf374 100644 --- a/pyinferno/__init__.py +++ b/pyinferno/__init__.py @@ -4,4 +4,4 @@ InfernoRenderer = Renderer -__version__ = "0.2.5" +__version__ = "0.2.6" diff --git a/pyproject.toml b/pyproject.toml index 2c1252f..f94b34b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "pyinferno" -version = "0.2.5" +version = "0.2.6" author = "Mike Roberts" author_email = "mike.roberts.2k10@googlemail.com" url = "https://github.com/mrob95/pyinferno"