Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and leo91000 committed May 28, 2024
1 parent 00bfd36 commit b5e5ba1
Show file tree
Hide file tree
Showing 15 changed files with 74 additions and 16 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.7.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.1...graphile_worker-v0.7.2) - 2024-05-28

### Added
- Add extensions supports

### Other
- *(deps)* update rust crate serde to 1.0.203
- *(deps)* update rust crate syn to 2.0.66
- *(deps)* update rust crate syn to 2.0.65
- *(deps)* update rust crate anyhow to 1.0.86
- *(deps)* update all non-major dependencies
- *(deps)* update rust crate syn to 2.0.64
- *(deps)* update rust crate serde to 1.0.202
- *(deps)* update rust crate syn to 2.0.63
- *(deps)* update rust crate syn to 2.0.62

## [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
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.7.1"
version = "0.7.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 @@ -59,13 +59,13 @@ 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.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_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.6", default-features = false }
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.4" }
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.5" }
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_ctx = { path = "./crates/ctx", version = "0.2.0" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.4", default-features = false }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.4.2" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.2" }
graphile_worker_extensions = { path = "./crates/extensions", version = "0.1.2" }
chrono = { version = "0.4.38", features = ["serde"] }
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.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.4...graphile_worker_crontab_parser-v0.5.5) - 2024-05-28

### Other
- update Cargo.toml dependencies

## [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
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.4"
version = "0.5.5"
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.3" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.4" }
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.6](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.5...graphile_worker_crontab_runner-v0.5.6) - 2024-05-28

### Other
- update Cargo.toml dependencies

## [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
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.5"
version = "0.5.6"
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.3" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.4" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.2" }
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.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.3...graphile_worker_crontab_types-v0.5.4) - 2024-05-28

### Other
- update Cargo.toml dependencies

## [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
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.3"
version = "0.5.4"
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.2.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.1.2...graphile_worker_ctx-v0.2.0) - 2024-05-28

### Added
- Add extensions supports

## [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
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "0.2.0"
edition = "2021"
license-file = "LICENSE.md"
description = "Worker Context package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
12 changes: 12 additions & 0 deletions crates/extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.2](https://github.com/leo91000/graphile_worker_rs/releases/tag/graphile_worker_extensions-v0.1.2) - 2024-05-28

### Added
- Add extensions supports
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.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.3...graphile_worker_migrations-v0.4.4) - 2024-05-28

### Other
- update Cargo.toml dependencies

## [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
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.3"
version = "0.4.4"
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.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.4.1...graphile_worker_task_handler-v0.4.2) - 2024-05-28

### Other
- update Cargo.toml dependencies

## [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
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.1"
version = "0.4.2"
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.2" }
graphile_worker_ctx = { path = "../ctx", version = "0.2.0" }
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["rt", "macros"] }
Expand Down

0 comments on commit b5e5ba1

Please sign in to comment.