From db5f6138469ba8f3cff681385b330d8e2a8102da Mon Sep 17 00:00:00 2001 From: Max Countryman Date: Sun, 27 Oct 2024 10:40:26 -0700 Subject: [PATCH] mark v0.0.6 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2983692..36f0eab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Unreleased +# 0.0.6 + +- Breaking: Queue methods now take input by reference +- Breaking: Job methods also take input by reference +- Breaking: The scheduler `run_every` method is removed +- Pending tasks are now processed upon change via a notify channel #25 +- An `unschedule` method is provided on `Queue` and `Job` #40 +- Graceful shutdown is now available on `JobHandle` returned from `start` #37 + # 0.0.5 - Breaking: Tasks require an associated type Output diff --git a/Cargo.toml b/Cargo.toml index a8e2ff2..89f58e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "underway" description = "⏳ Durable step functions via Postgres" -version = "0.0.5" +version = "0.0.6" edition = "2021" license = "MIT" keywords = ["background-jobs", "job-queue", "work-queue", "sqlx", "web"]