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 4, 2024
1 parent 4a6f4a9 commit 63cf2ee
Show file tree
Hide file tree
Showing 12 changed files with 53 additions and 13 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [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
- Add more complex test cases for run_once
- Add more run_once test
- Rename test file
- Add more run_once cases & refactor
- simplify job_count code
- Add more integration tests
- *(deps)* update rust crate tokio to 1.36.0
- Add the first integration test
- Rename create_helpers method to create_utils
- Fix ci permissions
- release

## [0.4.0](https://github.com/leo91000/graphile_worker_rs/releases/tag/graphile_worker-v0.4.0) - 2024-01-31

### Added
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker"
version = "0.4.0"
version = "0.5.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 @@ -54,13 +54,13 @@ runtime-tokio-native-tls = [
# runtime-async-std-native-tls = ["sqlx/runtime-async-std-native-tls"]

[dependencies]
graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.0" }
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.0" }
graphile_worker_macros = { path = "./crates/macros", version = "0.2.0" }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.2.0" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.0" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.3.1" }
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" }
chrono = { version = "0.4.33", features = ["serde"] }
futures = "0.3.30"
getset = "0.1.2"
Expand Down
5 changes: 5 additions & 0 deletions crates/crontab_runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.5.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.0...graphile_worker_crontab_runner-v0.5.1) - 2024-02-04

### Other
- update Cargo.toml dependencies

## [0.4.2](https://github.com/leo91000/graphile_worker/releases/tag/[email protected])


Expand Down
4 changes: 2 additions & 2 deletions crates/crontab_runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_crontab_runner"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab runner package for graphile worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -18,7 +18,7 @@ runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls", "tokio"]

[dependencies]
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.0" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.0" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.1" }
chrono = { workspace = true }
sqlx = { workspace = true }
thiserror = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.2.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_macros-v0.2.0...graphile_worker_macros-v0.2.1) - 2024-02-04

### Other
- update Cargo.toml dependencies

## [0.1.0](https://github.com/leo91000/archimedes/releases/tag/[email protected])


Expand Down
4 changes: 2 additions & 2 deletions crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_macros"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license-file = "LICENSE.md"
description = "Graphile Worker macros"
Expand All @@ -12,7 +12,7 @@ categories = []
readme = "README.md"

[dependencies]
graphile_worker_task_handler = { path = "../task_handler", version = "0.2.0" }
graphile_worker_task_handler = { path = "../task_handler", version = "0.2.1" }
syn = { workspace = true }
quote = { workspace = true }

Expand Down
5 changes: 5 additions & 0 deletions crates/migrations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [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
- Add the first integration test

## [0.2.4](https://github.com/leo91000/graphile_worker/releases/tag/[email protected])


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.0"
version = "0.3.1"
edition = "2021"
license-file = "LICENSE.md"
description = "Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
5 changes: 5 additions & 0 deletions crates/shutdown_signal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

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

### Other
- update Cargo.toml dependencies

## [0.2.4](https://github.com/leo91000/archimedes/releases/tag/[email protected])


Expand Down
2 changes: 1 addition & 1 deletion crates/shutdown_signal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_shutdown_signal"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license-file = "LICENSE.md"
description = "Migrations 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.2.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.2.0...graphile_worker_task_handler-v0.2.1) - 2024-02-04

### Other
- update Cargo.toml dependencies

## [0.1.0](https://github.com/leo91000/archimedes/releases/tag/[email protected])


Expand Down
2 changes: 1 addition & 1 deletion 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.2.0"
version = "0.2.1"
edition = "2021"
license-file = "LICENSE.md"
description = "A library to handle tasks for the Graphile Worker project"
Expand Down

0 comments on commit 63cf2ee

Please sign in to comment.