Skip to content

Commit 2e07f77

Browse files
chore: bump versions (#751)
1 parent ed9cfdd commit 2e07f77

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ wasm-bindgen-cli-support = "0.2.100"
2828
wasm-bindgen-futures = "0.4.50"
2929
wasm-bindgen-macro-support = "0.2.100"
3030
wasm-bindgen-test = "0.3.50"
31-
worker = { path = "worker", version = "0.5.0", features = ["queue", "d1", "axum", "timezone"] }
31+
worker = { path = "worker", version = "0.6.0", features = ["queue", "d1", "axum", "timezone"] }
3232
worker-kv = { path = "worker-kv", version = "0.7.0" }
33-
worker-macros = { path = "worker-macros", version = "0.5.0", features = ["queue"] }
34-
worker-sys = { path = "worker-sys", version = "0.5.0", features = ["d1", "queue"] }
33+
worker-macros = { path = "worker-macros", version = "0.6.0", features = ["queue"] }
34+
worker-sys = { path = "worker-sys", version = "0.6.0", features = ["d1", "queue"] }
3535

3636
[profile.release]
3737
# rustc supports two "optimize for size" levels: opt-level = "s" and "z".

templates/axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ wasm-opt = false
1515
crate-type = ["cdylib"]
1616

1717
[dependencies]
18-
worker = { version = "0.5.0", features = ['http', 'axum'] }
19-
worker-macros = { version = "0.5.0", features = ['http'] }
18+
worker = { version = "0.6.0", features = ['http', 'axum'] }
19+
worker-macros = { version = "0.6.0", features = ['http'] }
2020
axum = { version = "0.8", default-features = false }
2121
tower-service = "0.3.3"
2222
console_error_panic_hook = { version = "0.1.7" }

templates/hello-world-http/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ wasm-opt = false
1515
crate-type = ["cdylib"]
1616

1717
[dependencies]
18-
worker = { version = "0.5.0", features = ['http'] }
19-
worker-macros = { version = "0.5.0", features = ['http'] }
18+
worker = { version = "0.6.0", features = ['http'] }
19+
worker-macros = { version = "0.6.0", features = ['http'] }
2020
console_error_panic_hook = { version = "0.1.7" }
2121
http = "1.3"

templates/hello-world/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ wasm-opt = false
1515
crate-type = ["cdylib"]
1616

1717
[dependencies]
18-
worker = { version = "0.5.0" }
19-
worker-macros = { version = "0.5.0" }
18+
worker = { version = "0.6.0" }
19+
worker-macros = { version = "0.6.0" }
2020
console_error_panic_hook = { version = "0.1.7" }

worker-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker-macros"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Cloudflare Workers Team <[email protected]>"]
55
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
66
edition = "2018"

worker-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "worker-sys"
33
authors = ["Cloudflare Workers Team <[email protected]>"]
44
edition = "2018"
5-
version = "0.5.0"
5+
version = "0.6.0"
66
license = "Apache-2.0"
77
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-sys"
88
description = "Low-level extern definitions / FFI bindings to the Cloudflare Workers JS Runtime."

worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Cloudflare Workers Team <[email protected]>"]
55
repository = "https://github.com/cloudflare/workers-rs"
66
edition = "2018"

0 commit comments

Comments
 (0)