diff --git a/crates/taskito-async/Cargo.toml b/crates/taskito-async/Cargo.toml index 4f35f9c..0603eae 100644 --- a/crates/taskito-async/Cargo.toml +++ b/crates/taskito-async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskito-async" -version = "0.12.3" +version = "0.13.0" edition = "2021" [dependencies] diff --git a/crates/taskito-core/Cargo.toml b/crates/taskito-core/Cargo.toml index 6d46529..ea37b37 100644 --- a/crates/taskito-core/Cargo.toml +++ b/crates/taskito-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskito-core" -version = "0.12.3" +version = "0.13.0" edition = "2021" [features] diff --git a/crates/taskito-python/Cargo.toml b/crates/taskito-python/Cargo.toml index bbf5af5..9d3bb9e 100644 --- a/crates/taskito-python/Cargo.toml +++ b/crates/taskito-python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskito-python" -version = "0.12.3" +version = "0.13.0" edition = "2021" [features] diff --git a/crates/taskito-workflows/Cargo.toml b/crates/taskito-workflows/Cargo.toml index a56b672..d93b067 100644 --- a/crates/taskito-workflows/Cargo.toml +++ b/crates/taskito-workflows/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskito-workflows" -version = "0.12.3" +version = "0.13.0" edition = "2021" [features] diff --git a/docs/content/docs/more/changelog.mdx b/docs/content/docs/more/changelog.mdx index dcca8ab..20658c0 100644 --- a/docs/content/docs/more/changelog.mdx +++ b/docs/content/docs/more/changelog.mdx @@ -5,7 +5,7 @@ description: "Release history for taskito — every notable change, fix, and fea All notable changes to taskito are documented here. -## Unreleased +## 0.13.0 ### Added diff --git a/py_src/taskito/__init__.py b/py_src/taskito/__init__.py index ef95f14..9d3c8fb 100644 --- a/py_src/taskito/__init__.py +++ b/py_src/taskito/__init__.py @@ -108,4 +108,4 @@ __version__ = _get_version("taskito") except PackageNotFoundError: - __version__ = "0.12.3" + __version__ = "0.13.0" diff --git a/pyproject.toml b/pyproject.toml index d4735b0..f09ccb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "taskito" -version = "0.12.3" +version = "0.13.0" description = "Rust-powered task queue for Python. No broker required." requires-python = ">=3.10" license = { file = "LICENSE" }