Skip to content

Commit c0bf5cd

Browse files
authored
Release v0.0.20 (#463)
1 parent 3f1f783 commit c0bf5cd

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

Cargo.lock

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

worker-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker-macros"
3-
version = "0.0.11"
3+
version = "0.0.12"
44
authors = ["Cloudflare Workers Team <[email protected]>"]
55
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
66
edition = "2018"
@@ -13,7 +13,7 @@ path = "src/lib.rs"
1313

1414
[dependencies]
1515
async-trait = "0.1.68"
16-
worker-sys = { path = "../worker-sys", version = "0.0.11" }
16+
worker-sys = { path = "../worker-sys", version = "0.0.12" }
1717
syn = "2.0.17"
1818
proc-macro2 = "1.0.60"
1919
quote = "1.0.28"

worker-sandbox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ http = "1"
2626
regex = "1.8.4"
2727
serde = { version = "1.0.164", features = ["derive"] }
2828
serde_json = "1.0.96"
29-
worker = { path = "../worker", version = "0.0.19", features = ["queue", "d1"] }
29+
worker = { path = "../worker", version = "0.0.20", features = ["queue", "d1"] }
3030
futures-channel = "0.3.28"
3131
futures-util = { version = "0.3.28", default-features = false }
3232
rand = "0.8.5"

worker-sys/Cargo.toml

+1-1
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.0.11"
5+
version = "0.0.12"
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker"
3-
version = "0.0.19"
3+
version = "0.0.20"
44
authors = ["Cloudflare Workers Team <[email protected]>"]
55
repository = "https://github.com/cloudflare/workers-rs"
66
edition = "2018"
@@ -33,8 +33,8 @@ serde-wasm-bindgen = "0.6.1"
3333
serde_urlencoded = "0.7"
3434
wasm-streams = "0.4"
3535
worker-kv = "0.6.0"
36-
worker-macros = { path = "../worker-macros", version = "0.0.11" }
37-
worker-sys = { path = "../worker-sys", version = "0.0.11" }
36+
worker-macros = { path = "../worker-macros", version = "0.0.12" }
37+
worker-sys = { path = "../worker-sys", version = "0.0.12" }
3838

3939
[dependencies.web-sys]
4040
version = "0.3.63"

0 commit comments

Comments
 (0)