From a0424153e2c07a840c502333c1294697653d5e32 Mon Sep 17 00:00:00 2001 From: Brandur Date: Thu, 4 Jul 2024 22:07:42 -0700 Subject: [PATCH] Prepare version 0.2.0 Prepare release 0.2.0, which largely just includes a rename of `Args` to `JobArgs`, a new `JobArgsWithInsertOpts` protocol for slightly nicer typing, and a few more tests [1]. [1] https://github.com/riverqueue/riverqueue-python/pull/20 --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3267d8a..18ca9ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2024-07-04 + ### Changed - Rename `Args` to `JobArgs` and add `JobArgsWithInsertOpts` protocol. [PR #20](https://github.com/riverqueue/river/pull/20). diff --git a/pyproject.toml b/pyproject.toml index b8ef3c9..5606430 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "riverqueue" -version = "0.1.2" +version = "0.2.0" description = "Python insert-only client for River." authors = [ { name = "Eric Hauser", email = "ewhauser@gmail.com" },