Skip to content

Commit

Permalink
bump: v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
geofmureithi committed Oct 11, 2023
1 parent b77b48f commit 1e3ad0b
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.4"
version = "0.4.5"
authors = ["Geoffrey Mureithi <mureithinjuguna@gmail.com>"]
description = "Simple, extensible multithreaded background job processing for Rust"
repository = "https://github.com/geofmureithi/apalis"
Expand Down Expand Up @@ -66,26 +66,26 @@ docsrs = ["document-features"]


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

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

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

[dependencies.apalis-cron]
version = "0.4.4"
version = "0.4.5"
optional = true
default-features = false
path = "./packages/apalis-cron"
Expand Down Expand Up @@ -122,8 +122,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.4", path = "./packages/apalis-redis" }
apalis-sql = { version = "0.4.4", path = "./packages/apalis-sql", features = [
apalis-redis = { version = "0.4.5", path = "./packages/apalis-redis" }
apalis-sql = { version = "0.4.5", 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.4"
version = "0.4.5"
authors = ["Njuguna Mureithi <mureithinjuguna@gmail.com>"]
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.4"
version = "0.4.5"
edition = "2021"
authors = ["Njuguna Mureithi <mureithinjuguna@gmail.com>"]
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.4", default-features = false }
apalis-core = { path = "../../packages/apalis-core", version = "0.4.5", default-features = false }
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.4", features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.4.5", 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.4"
version = "0.4.5"
authors = ["Njuguna Mureithi <mureithinjuguna@gmail.com>"]
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.4", default-features = false, features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.4.5", default-features = false, features = [
"storage",
] }
redis = { version = "0.23", 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.4"
version = "0.4.5"
authors = ["Njuguna Mureithi <mureithinjuguna@gmail.com>"]
edition = "2021"
readme = "../../README.md"
Expand Down Expand Up @@ -29,7 +29,7 @@ default-features = false
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
apalis-core = { path = "../../packages/apalis-core", version = "0.4.4", features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.4.5", features = [
"storage",
], default-features = false }
chrono = { version = "0.4", default-features = false, features = [
Expand Down

0 comments on commit 1e3ad0b

Please sign in to comment.