Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump: to 0.6.0-rc.6 #412

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repository = "https://github.com/geofmureithi/apalis"

[package]
name = "apalis"
version = "0.6.0-rc.5"
version = "0.6.0-rc.6"
authors = ["Geoffrey Mureithi <[email protected]>"]
description = "Simple, extensible multithreaded background job processing for Rust"
edition.workspace = true
Expand Down Expand Up @@ -58,7 +58,7 @@ layers = [
docsrs = ["document-features"]

[dependencies.apalis-core]
version = "0.6.0-rc.5"
version = "0.6.0-rc.6"
default-features = false
path = "./packages/apalis-core"

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.6.0-rc.5"
version = "0.6.0-rc.6"
authors = ["Njuguna Mureithi <[email protected]>"]
edition.workspace = true
repository.workspace = true
Expand Down
4 changes: 2 additions & 2 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.6.0-rc.5"
version = "0.6.0-rc.6"
edition.workspace = true
repository.workspace = true
authors = ["Njuguna Mureithi <[email protected]>"]
Expand All @@ -10,7 +10,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.6.0-rc.5", default-features = false, features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.6.0-rc.6", default-features = false, features = [
"sleep",
] }
cron = "0.12.1"
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.6.0-rc.5"
version = "0.6.0-rc.6"
authors = ["Njuguna Mureithi <[email protected]>"]
edition.workspace = true
repository.workspace = true
Expand All @@ -12,7 +12,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.6.0-rc.5", default-features = false, features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.6.0-rc.6", default-features = false, features = [
"sleep",
"json",
] }
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.6.0-rc.5"
version = "0.6.0-rc.6"
authors = ["Njuguna Mureithi <[email protected]>"]
edition.workspace = true
repository.workspace = true
Expand All @@ -26,7 +26,7 @@ features = ["chrono"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
apalis-core = { path = "../../packages/apalis-core", version = "0.6.0-rc.5", default-features = false, features = [
apalis-core = { path = "../../packages/apalis-core", version = "0.6.0-rc.6", default-features = false, features = [
"sleep",
"json",
] }
Expand Down
Loading