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 May 8, 2024
1 parent 04fe0fe commit 52f0a3d
Show file tree
Hide file tree
Showing 18 changed files with 90 additions and 22 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [0.7.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.0...graphile_worker-v0.7.1) - 2024-05-08

### Other
- *(deps)* update all non-major dependencies
- *(deps)* update all non-major dependencies
- *(deps)* update rust crate tokio-util to 0.7.11
- *(deps)* update rust crate serde to 1.0.200
- *(deps)* update rust crate serde to 1.0.199
- *(deps)* update all non-major dependencies
- *(deps)* update rust crate serde to 1.0.198
- *(deps)* update rust crate serde_json to 1.0.116
- *(deps)* update rust crate chrono to 0.4.38
- *(deps)* update rust crate syn to 2.0.59
- *(deps)* update all non-major dependencies
- *(deps)* update rust crate serde_qs to 0.13.0
- *(deps)* update rust crate syn to 2.0.58
- *(deps)* update rust crate syn to 2.0.57
- *(deps)* update rust crate tokio to 1.37.0
- *(deps)* update rust crate chrono to 0.4.37
- *(deps)* update rust crate serde_json to 1.0.115
- *(deps)* update rust crate syn to 2.0.55
- *(deps)* update rust crate indoc to 2.0.5
- *(deps)* update rust crate uuid to 1.8.0
- *(deps)* update rust crate syn to 2.0.53
- *(deps)* update all non-major dependencies
- *(deps)* update rust crate chrono to 0.4.35
- *(deps)* update rust crate syn to 2.0.52

## [0.7.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.6.2...graphile_worker-v0.7.0) - 2024-02-28

### Added
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker"
version = "0.7.0"
version = "0.7.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 @@ -53,14 +53,14 @@ 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.4", default-features = false }
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.2" }
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.3" }
graphile_worker_job = { path = "./crates/job", version = "0.1.1" }
graphile_worker_ctx = { path = "./crates/ctx", version = "0.1.1" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.2", default-features = false }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.4.0" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.1" }
graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.5", default-features = false }
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.3" }
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.4" }
graphile_worker_job = { path = "./crates/job", version = "0.1.2" }
graphile_worker_ctx = { path = "./crates/ctx", version = "0.1.2" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.3", default-features = false }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.4.1" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.2" }
chrono = { version = "0.4.38", features = ["serde"] }
futures = "0.3.30"
getset = "0.1.2"
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.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.3...graphile_worker_crontab_parser-v0.5.4) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [0.5.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.2...graphile_worker_crontab_parser-v0.5.3) - 2024-02-28

### Other
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.3"
version = "0.5.4"
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.2" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.3" }
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.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.4...graphile_worker_crontab_runner-v0.5.5) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [0.5.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.3...graphile_worker_crontab_runner-v0.5.4) - 2024-02-28

### Other
Expand Down
6 changes: 3 additions & 3 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.4"
version = "0.5.5"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab runner package for graphile worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -17,8 +17,8 @@ tls-rustls = ["sqlx/tls-rustls"]
tls-native-tls = ["sqlx/tls-native-tls"]

[dependencies]
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.2" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.1" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.3" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.2" }
chrono = { workspace = true }
sqlx = { workspace = true }
thiserror = { 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.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.2...graphile_worker_crontab_types-v0.5.3) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [0.5.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.1...graphile_worker_crontab_types-v0.5.2) - 2024-02-28

### Other
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.2"
version = "0.5.3"
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/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.1.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.1.1...graphile_worker_ctx-v0.1.2) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [0.1.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.1.0...graphile_worker_ctx-v0.1.1) - 2024-02-28

### Other
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.1.1"
version = "0.1.2"
edition = "2021"
license-file = "LICENSE.md"
description = "Worker Context package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -12,7 +12,7 @@ categories = []
readme = "README.md"

[dependencies]
graphile_worker_job = { path = "../job", version = "0.1.1" }
graphile_worker_job = { path = "../job", version = "0.1.2" }
getset.workspace = true
serde_json.workspace = true
sqlx.workspace = true
5 changes: 5 additions & 0 deletions crates/job/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.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job-v0.1.1...graphile_worker_job-v0.1.2) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [0.1.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job-v0.1.0...graphile_worker_job-v0.1.1) - 2024-02-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/job/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_job"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license-file = "LICENSE.md"
description = "Job 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.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.2...graphile_worker_migrations-v0.4.3) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [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
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.2"
version = "0.4.3"
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.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_shutdown_signal-v0.3.1...graphile_worker_shutdown_signal-v0.3.2) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [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
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.1"
version = "0.3.2"
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.4.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.4.0...graphile_worker_task_handler-v0.4.1) - 2024-05-08

### Other
- update Cargo.toml dependencies

## [0.4.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.3.0...graphile_worker_task_handler-v0.4.0) - 2024-02-28

### Added
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.0"
version = "0.4.1"
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.1.1" }
graphile_worker_ctx = { path = "../ctx", version = "0.1.2" }
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["rt", "macros"] }
Expand Down

0 comments on commit 52f0a3d

Please sign in to comment.