diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f2f25c..216a35a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,5 +167,10 @@ jobs: pattern: wheels-* merge-multiple: true path: dist + # skip-existing keeps a re-run or a partially-completed upload from + # failing the whole job on files PyPI already has, since a release can + # otherwise only ever be published once. - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 + with: + skip-existing: true diff --git a/Cargo.lock b/Cargo.lock index 64b33e5..5f638cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -92,7 +92,7 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" [[package]] name = "ormar_rust_utils" -version = "0.2.0" +version = "0.2.1" dependencies = [ "base64", "indexmap", diff --git a/Cargo.toml b/Cargo.toml index 2483908..347b6f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ormar_rust_utils" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Rust-accelerated utility functions for the ormar ORM" license = "MIT" diff --git a/pyproject.toml b/pyproject.toml index 3c59b1e..b3583dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "ormar-utils" -version = "0.2.0" +version = "0.2.1" description = "Rust-accelerated utility functions for the ormar ORM" readme = "README.md" license = { text = "MIT" } @@ -37,7 +37,7 @@ features = ["pyo3/extension-module"] [tool.poetry] name = "ormar-utils" -version = "0.2.0" +version = "0.2.1" description = "Rust-accelerated utility functions for the ormar ORM" authors = ["Radosław Drążkiewicz "] package-mode = false