Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and leo91000 committed May 29, 2024
1 parent 3ccc4d2 commit 1a76766
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.8.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.2...graphile_worker-v0.8.0) - 2024-05-29

### Added
- Introduce IntoTaskHandlerResult trait
- Job stream now yield as much job as the concurrency option defines
- Add get_ext() helper method on WorkerContext

### Other
- Add app state documentation in README

## [0.7.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.1...graphile_worker-v0.7.2) - 2024-05-28

### Added
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker"
version = "0.7.2"
version = "0.8.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 @@ -63,11 +63,11 @@ graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.4" }
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.5" }
graphile_worker_job = { path = "./crates/job", version = "0.1.2" }
graphile_worker_ctx = { path = "./crates/ctx", version = "0.2.0" }
graphile_worker_ctx = { path = "./crates/ctx", version = "0.2.1" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.4", default-features = false }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.4.2" }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.5.0" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.2" }
graphile_worker_extensions = { path = "./crates/extensions", version = "0.1.2" }
graphile_worker_extensions = { path = "./crates/extensions", version = "0.1.3" }
chrono = { version = "0.4.38", features = ["serde"] }
futures = "0.3.30"
getset = "0.1.2"
Expand Down
5 changes: 5 additions & 0 deletions crates/ctx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.2.0...graphile_worker_ctx-v0.2.1) - 2024-05-29

### Added
- Add get_ext() helper method on WorkerContext

## [0.2.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.1.2...graphile_worker_ctx-v0.2.0) - 2024-05-28

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/ctx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_ctx"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license-file = "LICENSE.md"
description = "Worker Context package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -13,7 +13,7 @@ readme = "README.md"

[dependencies]
graphile_worker_job = { path = "../job", version = "0.1.2" }
graphile_worker_extensions = { path = "../extensions", version = "0.1.2" }
graphile_worker_extensions = { path = "../extensions", version = "0.1.3" }
getset.workspace = true
serde_json.workspace = true
sqlx.workspace = true
5 changes: 5 additions & 0 deletions crates/extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_extensions-v0.1.2...graphile_worker_extensions-v0.1.3) - 2024-05-29

### Other
- release

## [0.1.2](https://github.com/leo91000/graphile_worker_rs/releases/tag/graphile_worker_extensions-v0.1.2) - 2024-05-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/extensions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_extensions"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license-file = "LICENSE.md"
description = "Extensions package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
5 changes: 5 additions & 0 deletions crates/task_handler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.5.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.4.2...graphile_worker_task_handler-v0.5.0) - 2024-05-29

### Added
- Introduce IntoTaskHandlerResult trait

## [0.4.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.4.1...graphile_worker_task_handler-v0.4.2) - 2024-05-28

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/task_handler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_task_handler"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
license-file = "LICENSE.md"
description = "A library to handle tasks for the Graphile Worker project"
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
graphile_worker_ctx = { path = "../ctx", version = "0.2.0" }
graphile_worker_ctx = { path = "../ctx", version = "0.2.1" }
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["rt", "macros"] }
Expand Down

0 comments on commit 1a76766

Please sign in to comment.