Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down Expand Up @@ -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 <collerek@gmail.com>"]
package-mode = false
Expand Down
Loading