Skip to content

Commit

Permalink
Merge 4bb7b37 into 1c7f5cc
Browse files Browse the repository at this point in the history
  • Loading branch information
geofmureithi authored Jan 5, 2024
2 parents 1c7f5cc + 4bb7b37 commit a84b795
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apalis"
version = "0.4.7"
version = "0.4.8"
authors = ["Geoffrey Mureithi <[email protected]>"]
description = "Simple, extensible multithreaded background job processing for Rust"
repository = "https://github.com/geofmureithi/apalis"
Expand Down Expand Up @@ -71,26 +71,26 @@ docsrs = ["document-features"]


[dependencies.apalis-redis]
version = "0.4.7"
version = "0.4.8"
optional = true
path = "./packages/apalis-redis"
default-features = false

[dependencies.apalis-sql]
version = "0.4.7"
version = "0.4.8"
features = ["migrate"]
optional = true
default-features = false
path = "./packages/apalis-sql"

[dependencies.apalis-core]
version = "0.4.7"
version = "0.4.8"
default-features = false
path = "./packages/apalis-core"
features = ["storage"]

[dependencies.apalis-cron]
version = "0.4.7"
version = "0.4.8"
optional = true
default-features = false
path = "./packages/apalis-cron"
Expand Down Expand Up @@ -127,8 +127,8 @@ pprof = { version = "0.13", features = ["flamegraph"] }
paste = "1.0.14"
serde = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
apalis-redis = { version = "0.4.7", path = "./packages/apalis-redis" }
apalis-sql = { version = "0.4.7", path = "./packages/apalis-sql", features = [
apalis-redis = { version = "0.4.8", path = "./packages/apalis-redis" }
apalis-sql = { version = "0.4.8", path = "./packages/apalis-sql", features = [
"sqlite", "postgres", "mysql"
] }

Expand Down
2 changes: 1 addition & 1 deletion packages/apalis-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apalis-core"
version = "0.4.7"
version = "0.4.8"
authors = ["Njuguna Mureithi <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions packages/apalis-cron/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apalis-cron"
version = "0.4.7"
version = "0.4.8"
edition = "2021"
authors = ["Njuguna Mureithi <[email protected]>"]
license = "MIT"
Expand All @@ -9,7 +9,7 @@ description = "A simple yet extensible library for cron-like job scheduling for
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
apalis-core = { path = "../../packages/apalis-core", version = "0.4.7", default-features = false, features = ["chrono"]}
apalis-core = { path = "../../packages/apalis-core", version = "0.4.8", default-features = false, features = ["chrono"]}
cron = "0.12.0"
futures = "0.3"
tower = { version = "0.4" }
Expand All @@ -23,7 +23,7 @@ async-std = { version = "1.12.0", optional = true }

[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
apalis-core = { path = "../../packages/apalis-core", version = "0.4.7", features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.4.8", features = [
"extensions",
"retry",
] }
Expand Down
4 changes: 2 additions & 2 deletions packages/apalis-redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apalis-redis"
version = "0.4.7"
version = "0.4.8"
authors = ["Njuguna Mureithi <[email protected]>"]
edition = "2021"
readme = "../../README.md"
Expand All @@ -11,7 +11,7 @@ description = "Redis Storage for apalis: use Redis for background jobs and messa
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
apalis-core = { path = "../../packages/apalis-core", version = "0.4.7", default-features = false, features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.4.8", default-features = false, features = [
"storage",
] }
redis = { version = "0.24", default-features = false, features = [
Expand Down
4 changes: 2 additions & 2 deletions packages/apalis-sql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apalis-sql"
version = "0.4.7"
version = "0.4.8"
authors = ["Njuguna Mureithi <[email protected]>"]
edition = "2021"
readme = "../../README.md"
Expand Down Expand Up @@ -31,7 +31,7 @@ default-features = false
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
apalis-core = { path = "../../packages/apalis-core", version = "0.4.7", features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.4.8", features = [
"storage",
"tokio-comp",
], default-features = false }
Expand Down

0 comments on commit a84b795

Please sign in to comment.