Skip to content

Commit

Permalink
Release v0.0.20 (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
kflansburg authored Mar 8, 2024
1 parent 3f1f783 commit c0bf5cd
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions worker-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker-macros"
version = "0.0.11"
version = "0.0.12"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
edition = "2018"
Expand All @@ -13,7 +13,7 @@ path = "src/lib.rs"

[dependencies]
async-trait = "0.1.68"
worker-sys = { path = "../worker-sys", version = "0.0.11" }
worker-sys = { path = "../worker-sys", version = "0.0.12" }
syn = "2.0.17"
proc-macro2 = "1.0.60"
quote = "1.0.28"
Expand Down
2 changes: 1 addition & 1 deletion worker-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ http = "1"
regex = "1.8.4"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
worker = { path = "../worker", version = "0.0.19", features = ["queue", "d1"] }
worker = { path = "../worker", version = "0.0.20", features = ["queue", "d1"] }
futures-channel = "0.3.28"
futures-util = { version = "0.3.28", default-features = false }
rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion worker-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "worker-sys"
authors = ["Cloudflare Workers Team <[email protected]>"]
edition = "2018"
version = "0.0.11"
version = "0.0.12"
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."
Expand Down
6 changes: 3 additions & 3 deletions worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker"
version = "0.0.19"
version = "0.0.20"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs"
edition = "2018"
Expand Down Expand Up @@ -33,8 +33,8 @@ serde-wasm-bindgen = "0.6.1"
serde_urlencoded = "0.7"
wasm-streams = "0.4"
worker-kv = "0.6.0"
worker-macros = { path = "../worker-macros", version = "0.0.11" }
worker-sys = { path = "../worker-sys", version = "0.0.11" }
worker-macros = { path = "../worker-macros", version = "0.0.12" }
worker-sys = { path = "../worker-sys", version = "0.0.12" }

[dependencies.web-sys]
version = "0.3.63"
Expand Down

0 comments on commit c0bf5cd

Please sign in to comment.