Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.3.3 #615

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 28 additions & 18 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.3.2"
version = "0.3.3"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
edition = "2018"
Expand All @@ -16,7 +16,7 @@ async-trait.workspace = true
wasm-bindgen.workspace = true
wasm-bindgen-futures.workspace = true
wasm-bindgen-macro-support.workspace = true
worker-sys = { path = "../worker-sys", version = "0.3.2" }
worker-sys = { path = "../worker-sys", version = "0.3.3" }
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 @@ -32,7 +32,7 @@ http.workspace=true
regex = "1.8.4"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
worker = { path = "../worker", version = "0.3.2", features = ["queue", "d1"] }
worker = { path = "../worker", version = "0.3.3", features = ["queue", "d1"] }
rand = "0.8.5"
uuid = { version = "1.3.3", features = ["v4", "serde"] }
serde-wasm-bindgen = "0.6.1"
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.3.2"
version = "0.3.3"
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.3.2"
version = "0.3.3"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs"
edition = "2018"
Expand Down Expand Up @@ -36,8 +36,8 @@ serde-wasm-bindgen = "0.6.1"
serde_urlencoded = "0.7"
wasm-streams = "0.4"
worker-kv = { path = "../worker-kv", version = "0.7.0" }
worker-macros = { path = "../worker-macros", version = "0.3.2" }
worker-sys = { path = "../worker-sys", version = "0.3.2" }
worker-macros = { path = "../worker-macros", version = "0.3.3" }
worker-sys = { path = "../worker-sys", version = "0.3.3" }

[dependencies.chrono-tz]
optional = true
Expand Down
Loading