diff --git a/Cargo.lock b/Cargo.lock index 3e6ee046b..a0dab5ee5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3925,7 +3925,7 @@ dependencies = [ [[package]] name = "worker" -version = "0.5.0" +version = "0.6.0" dependencies = [ "async-trait", "axum", @@ -4005,7 +4005,7 @@ dependencies = [ [[package]] name = "worker-macros" -version = "0.5.0" +version = "0.6.0" dependencies = [ "async-trait", "proc-macro2", @@ -4052,7 +4052,7 @@ dependencies = [ [[package]] name = "worker-sys" -version = "0.5.0" +version = "0.6.0" dependencies = [ "cfg-if", "js-sys", diff --git a/Cargo.toml b/Cargo.toml index 9e658a3d5..24c9c5707 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,10 +28,10 @@ wasm-bindgen-cli-support = "0.2.100" wasm-bindgen-futures = "0.4.50" wasm-bindgen-macro-support = "0.2.100" wasm-bindgen-test = "0.3.50" -worker = { path = "worker", version = "0.5.0", features = ["queue", "d1", "axum", "timezone"] } +worker = { path = "worker", version = "0.6.0", features = ["queue", "d1", "axum", "timezone"] } worker-kv = { path = "worker-kv", version = "0.7.0" } -worker-macros = { path = "worker-macros", version = "0.5.0", features = ["queue"] } -worker-sys = { path = "worker-sys", version = "0.5.0", features = ["d1", "queue"] } +worker-macros = { path = "worker-macros", version = "0.6.0", features = ["queue"] } +worker-sys = { path = "worker-sys", version = "0.6.0", features = ["d1", "queue"] } [profile.release] # rustc supports two "optimize for size" levels: opt-level = "s" and "z". diff --git a/templates/axum/Cargo.toml b/templates/axum/Cargo.toml index be93729da..28db5eee1 100644 --- a/templates/axum/Cargo.toml +++ b/templates/axum/Cargo.toml @@ -15,8 +15,8 @@ wasm-opt = false crate-type = ["cdylib"] [dependencies] -worker = { version = "0.5.0", features = ['http', 'axum'] } -worker-macros = { version = "0.5.0", features = ['http'] } +worker = { version = "0.6.0", features = ['http', 'axum'] } +worker-macros = { version = "0.6.0", features = ['http'] } axum = { version = "0.8", default-features = false } tower-service = "0.3.3" console_error_panic_hook = { version = "0.1.7" } diff --git a/templates/hello-world-http/Cargo.toml b/templates/hello-world-http/Cargo.toml index f86285160..3ad93eefe 100644 --- a/templates/hello-world-http/Cargo.toml +++ b/templates/hello-world-http/Cargo.toml @@ -15,7 +15,7 @@ wasm-opt = false crate-type = ["cdylib"] [dependencies] -worker = { version = "0.5.0", features = ['http'] } -worker-macros = { version = "0.5.0", features = ['http'] } +worker = { version = "0.6.0", features = ['http'] } +worker-macros = { version = "0.6.0", features = ['http'] } console_error_panic_hook = { version = "0.1.7" } http = "1.3" diff --git a/templates/hello-world/Cargo.toml b/templates/hello-world/Cargo.toml index 37777d99a..36618a91d 100644 --- a/templates/hello-world/Cargo.toml +++ b/templates/hello-world/Cargo.toml @@ -15,6 +15,6 @@ wasm-opt = false crate-type = ["cdylib"] [dependencies] -worker = { version = "0.5.0" } -worker-macros = { version = "0.5.0" } +worker = { version = "0.6.0" } +worker-macros = { version = "0.6.0" } console_error_panic_hook = { version = "0.1.7" } diff --git a/worker-macros/Cargo.toml b/worker-macros/Cargo.toml index 00a311a40..ef5d6155c 100644 --- a/worker-macros/Cargo.toml +++ b/worker-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker-macros" -version = "0.5.0" +version = "0.6.0" authors = ["Cloudflare Workers Team "] repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros" edition = "2018" diff --git a/worker-sys/Cargo.toml b/worker-sys/Cargo.toml index 8811fbe06..1be2ff4f3 100644 --- a/worker-sys/Cargo.toml +++ b/worker-sys/Cargo.toml @@ -2,7 +2,7 @@ name = "worker-sys" authors = ["Cloudflare Workers Team "] edition = "2018" -version = "0.5.0" +version = "0.6.0" license = "Apache-2.0" repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-sys" description = "Low-level extern definitions / FFI bindings to the Cloudflare Workers JS Runtime." diff --git a/worker/Cargo.toml b/worker/Cargo.toml index 1daf4285b..e06c9dcf0 100644 --- a/worker/Cargo.toml +++ b/worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker" -version = "0.5.0" +version = "0.6.0" authors = ["Cloudflare Workers Team "] repository = "https://github.com/cloudflare/workers-rs" edition = "2018"