Skip to content

Commit

Permalink
Bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
geofmureithi committed Dec 23, 2022
1 parent 997dbea commit bc4c633
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apalis"
version = "0.3.4"
version = "0.3.5"
authors = ["Geoffrey Mureithi <[email protected]>"]
description = "Simple, extensible multithreaded background job processing for Rust"
repository = "https://github.com/geofmureithi/apalis"
Expand Down Expand Up @@ -54,26 +54,26 @@ docsrs = ["document-features"]


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

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

[dependencies.apalis-core]
version = "0.3.4"
version = "0.3.5"
optional = true
default-features = false
path = "./packages/apalis-core"

[dependencies.apalis-cron]
version = "0.3.4"
version = "0.3.5"
optional = true
default-features = false
path = "./packages/apalis-cron"
Expand All @@ -93,7 +93,7 @@ all-features = true
criterion = { version = "0.3", features=["async_tokio"] }
serde = "1"
tokio = { version = "1", features =["macros"] }
apalis-redis = { version = "0.3.4", path = "./packages/apalis-redis" }
apalis-redis = { version = "0.3.5", path = "./packages/apalis-redis" }

[[bench]]
name = "redis_benchmark"
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.3.4"
version = "0.3.5"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2018"
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.3.4"
version = "0.3.5"
edition = "2021"
authors = ["Geoffrey 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.3.4" }
apalis-core = { path = "../../packages/apalis-core", version = "0.3.5" }
cron = "0.11.0"
futures = "0.3"
tower = { version = "0.4" }
Expand All @@ -19,7 +19,7 @@ async-stream = "0.3.3"

[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
apalis-core = { path = "../../packages/apalis-core", version = "0.3.4", features=["extensions", "retry"] }
apalis-core = { path = "../../packages/apalis-core", version = "0.3.5", features=["extensions", "retry"] }
serde = { version = "1.0", features = ["derive"] }

[package.metadata.docs.rs]
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.3.4"
version = "0.3.5"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2018"
readme = "../../README.md"
Expand All @@ -11,7 +11,7 @@ description = "Redis Storage for Apalis: simple and reliable background processi
# 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.3.4", default-features = false }
apalis-core = { path = "../../packages/apalis-core", version = "0.3.5", default-features = false }
redis = { version = "0.21" , features = ["tokio-comp"] }
serde = "1"
log = "0.4"
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.3.4"
version = "0.3.5"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2018"
readme = "../../README.md"
Expand All @@ -23,7 +23,7 @@ features = [ "runtime-tokio-rustls", "uuid" ]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
apalis-core = { path = "../../packages/apalis-core", version = "0.3.4", features= ["storage"], default-features = false}
apalis-core = { path = "../../packages/apalis-core", version = "0.3.5", features= ["storage"], default-features = false}
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
async-stream = "0.3"
Expand Down

0 comments on commit bc4c633

Please sign in to comment.