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 12, 2024
1 parent 73eba3f commit f4165a0
Show file tree
Hide file tree
Showing 14 changed files with 63 additions and 16 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [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
- Update badge
- Include badge in README
- remove unused file
- Add cron test
- Verbose tarpaulin
- Add codecov token
- Fix coverage path
- Add more time for runs_jobs_in_parallel to process job
- Rename tarpaulin job to coverage
- Split check into multiple files
- Wait more time for jobs to be processed for tarpaulin
- Add `.run()` test
- *(deps)* update rust crate chrono to 0.4.34

## [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
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker"
version = "0.6.0"
version = "0.6.1"
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,12 +52,12 @@ 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.1", default-features = false }
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.4.0", default-features = false }
graphile_worker_macros = { path = "./crates/macros", version = "0.2.1" }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.2.1" }
graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.2", 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_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" }
chrono = { version = "0.4.34", features = ["serde"] }
futures = "0.3.30"
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.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
- updated the following local packages: graphile_worker_crontab_types

## [0.4.2](https://github.com/leo91000/archimedes/releases/tag/archimedes_crontab_parser@0.4.2)


Expand Down
4 changes: 2 additions & 2 deletions 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.0"
version = "0.5.1"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab parsing package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -12,7 +12,7 @@ categories = []
readme = "README.md"

[dependencies]
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.0" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.1" }
json5 = { workspace = true }
nom = { workspace = true }
serde = { workspace = true }
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.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
- Add cron test

## [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
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.1"
version = "0.5.2"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab runner package for graphile worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -17,7 +17,7 @@ tls-rustls = ["sqlx/tls-rustls"]
tls-native-tls = ["sqlx/tls-native-tls"]

[dependencies]
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.0" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.1" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.1" }
chrono = { workspace = true }
sqlx = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/crontab_types/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_types-v0.5.0...graphile_worker_crontab_types-v0.5.1) - 2024-02-12

### Other
- update Cargo.toml dependencies

## [0.4.0](https://github.com/leo91000/archimedes/releases/tag/archimedes_crontab_types@0.4.0)


Expand Down
2 changes: 1 addition & 1 deletion crates/crontab_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_crontab_types"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab types package for graphile_worker, a high performance Rust/PostgreSQL job queue"
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.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_macros-v0.2.1...graphile_worker_macros-v0.2.2) - 2024-02-12

### Other
- updated the following local packages: graphile_worker_task_handler

## [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
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.1"
version = "0.2.2"
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.1" }
graphile_worker_task_handler = { path = "../task_handler", version = "0.3.0" }
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.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
- Add cron test

## [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
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.0"
version = "0.4.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.3.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.2.1...graphile_worker_task_handler-v0.3.0) - 2024-02-12

### Other
- remove unused file

## [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
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.1"
version = "0.3.0"
edition = "2021"
license-file = "LICENSE.md"
description = "A library to handle tasks for the Graphile Worker project"
Expand Down

0 comments on commit f4165a0

Please sign in to comment.