Skip to content

Commit 488e1b7

Browse files
chore: bump versions (#611)
Co-authored-by: kflansburg <6134007+kflansburg@users.noreply.github.com>
1 parent b243b3e commit 488e1b7

File tree

5 files changed

+77
-52
lines changed

5 files changed

+77
-52
lines changed

Cargo.lock

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

worker-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker-macros"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
55
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
66
edition = "2018"
@@ -16,7 +16,7 @@ async-trait.workspace = true
1616
wasm-bindgen.workspace = true
1717
wasm-bindgen-futures.workspace = true
1818
wasm-bindgen-macro-support.workspace = true
19-
worker-sys = { path = "../worker-sys", version = "0.3.1" }
19+
worker-sys = { path = "../worker-sys", version = "0.3.2" }
2020
syn = "2.0.17"
2121
proc-macro2 = "1.0.60"
2222
quote = "1.0.28"

worker-sandbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ http.workspace=true
3232
regex = "1.8.4"
3333
serde = { version = "1.0.164", features = ["derive"] }
3434
serde_json = "1.0.96"
35-
worker = { path = "../worker", version = "0.3.1", features = ["queue", "d1"] }
35+
worker = { path = "../worker", version = "0.3.2", features = ["queue", "d1"] }
3636
rand = "0.8.5"
3737
uuid = { version = "1.3.3", features = ["v4", "serde"] }
3838
serde-wasm-bindgen = "0.6.1"

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 <workers@cloudflare.com>"]
44
edition = "2018"
5-
version = "0.3.1"
5+
version = "0.3.2"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
55
repository = "https://github.com/cloudflare/workers-rs"
66
edition = "2018"
@@ -36,8 +36,8 @@ serde-wasm-bindgen = "0.6.1"
3636
serde_urlencoded = "0.7"
3737
wasm-streams = "0.4"
3838
worker-kv = { path = "../worker-kv", version = "0.7.0" }
39-
worker-macros = { path = "../worker-macros", version = "0.3.1" }
40-
worker-sys = { path = "../worker-sys", version = "0.3.1" }
39+
worker-macros = { path = "../worker-macros", version = "0.3.2" }
40+
worker-sys = { path = "../worker-sys", version = "0.3.2" }
4141

4242
[dependencies.chrono-tz]
4343
optional = true

0 commit comments

Comments
 (0)