Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored and leo91000 committed Feb 7, 2024
1 parent d093520 commit 58539a3
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.6.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.5.0...graphile_worker-v0.6.0) - 2024-02-07

### Added
- Added cleanup, completed_jobs, force_unlock_workers,
- Make add_job util returns the DbJob
- Add migration 11 locked job error
- Add final run_once tests
- Add remove_job helper

### Other
- [**breaking**] Rename helpers mod to worker_utils
- Make add_job return Job instead of DbJob
- More run_once tests

## [0.5.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.4.0...graphile_worker-v0.5.0) - 2024-02-04

### Other
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE.md"
description = "High performance Rust/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)"
Expand Down Expand Up @@ -57,7 +57,7 @@ runtime-tokio-native-tls = [
graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.1" }
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.0" }
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.0" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.3.1" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.0" }
graphile_worker_macros = { path = "./crates/macros", version = "0.2.1" }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.2.1" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.1" }
Expand Down
6 changes: 6 additions & 0 deletions crates/migrations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.4.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.3.1...graphile_worker_migrations-v0.4.0) - 2024-02-07

### Added
- Make add_job util returns the DbJob
- Add migration 11 locked job error

## [0.3.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.3.0...graphile_worker_migrations-v0.3.1) - 2024-02-04

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/migrations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_migrations"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
license-file = "LICENSE.md"
description = "Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down

0 comments on commit 58539a3

Please sign in to comment.