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 14, 2024
1 parent 2fb7a73 commit 677e05f
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.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)"
Expand Down Expand Up @@ -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" }
Expand Down
5 changes: 5 additions & 0 deletions crates/crontab_parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/crontab_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
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.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
Expand Down
2 changes: 1 addition & 1 deletion 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.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"
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.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
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.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"
Expand Down

0 comments on commit 677e05f

Please sign in to comment.