diff --git a/CHANGELOG.md b/CHANGELOG.md index eafc7f2..83a4e35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.6.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.6.1...graphile_worker-v0.6.2) - 2024-02-14 + +### Other +- Include README in rust docs +- Update README +- *(deps)* update rust crate thiserror to 1.0.57 +- *(deps)* update codecov/codecov-action action to v4 + ## [0.6.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.6.0...graphile_worker-v0.6.1) - 2024-02-12 ### Other diff --git a/Cargo.toml b/Cargo.toml index 2e3db79..f2017c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker" -version = "0.6.1" +version = "0.6.2" 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)" @@ -52,10 +52,10 @@ tls-rustls = [ # runtime-async-std-native-tls = ["sqlx/runtime-async-std-native-tls"] [dependencies] -graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.2", default-features = false } +graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.3", default-features = false } graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.1" } -graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.1" } -graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.1", default-features = false } +graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.2" } +graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.2", default-features = false } graphile_worker_macros = { path = "./crates/macros", version = "0.2.2" } graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.3.0" } graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.1" } diff --git a/crates/crontab_parser/CHANGELOG.md b/crates/crontab_parser/CHANGELOG.md index 1d4dc3c..58a588c 100644 --- a/crates/crontab_parser/CHANGELOG.md +++ b/crates/crontab_parser/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.5.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.1...graphile_worker_crontab_parser-v0.5.2) - 2024-02-14 + +### Other +- update Cargo.toml dependencies + ## [0.5.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.0...graphile_worker_crontab_parser-v0.5.1) - 2024-02-12 ### Other diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index a2618eb..1421f03 100644 --- a/crates/crontab_parser/Cargo.toml +++ b/crates/crontab_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_crontab_parser" -version = "0.5.1" +version = "0.5.2" edition = "2021" license-file = "LICENSE.md" description = "Crontab parsing package for graphile_worker, a high performance Rust/PostgreSQL job queue" diff --git a/crates/crontab_runner/CHANGELOG.md b/crates/crontab_runner/CHANGELOG.md index f26e4ba..55ef0c8 100644 --- a/crates/crontab_runner/CHANGELOG.md +++ b/crates/crontab_runner/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.5.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.2...graphile_worker_crontab_runner-v0.5.3) - 2024-02-14 + +### Other +- update Cargo.toml dependencies + ## [0.5.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.1...graphile_worker_crontab_runner-v0.5.2) - 2024-02-12 ### Other diff --git a/crates/crontab_runner/Cargo.toml b/crates/crontab_runner/Cargo.toml index 43834be..68599dc 100644 --- a/crates/crontab_runner/Cargo.toml +++ b/crates/crontab_runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_crontab_runner" -version = "0.5.2" +version = "0.5.3" edition = "2021" license-file = "LICENSE.md" description = "Crontab runner package for graphile worker, a high performance Rust/PostgreSQL job queue" diff --git a/crates/migrations/CHANGELOG.md b/crates/migrations/CHANGELOG.md index d920122..ed03bef 100644 --- a/crates/migrations/CHANGELOG.md +++ b/crates/migrations/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.4.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.1...graphile_worker_migrations-v0.4.2) - 2024-02-14 + +### Other +- update Cargo.toml dependencies + ## [0.4.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.0...graphile_worker_migrations-v0.4.1) - 2024-02-12 ### Other diff --git a/crates/migrations/Cargo.toml b/crates/migrations/Cargo.toml index 1021992..5203444 100644 --- a/crates/migrations/Cargo.toml +++ b/crates/migrations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_migrations" -version = "0.4.1" +version = "0.4.2" edition = "2021" license-file = "LICENSE.md" description = "Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue"