Skip to content

Commit d61d370

Browse files
github-actions[bot]Auto Release Process
andauthored
Release wit-bindgen 0.53.1 (#1542)
[automatically-tag-and-release-this-commit] Co-authored-by: Auto Release Process <auto-release-process@users.noreply.github.com>
1 parent a555dc7 commit d61d370

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ resolver = "2"
2929

3030
[workspace.package]
3131
edition = "2024"
32-
version = "0.53.0"
32+
version = "0.53.1"
3333
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
3434
repository = "https://github.com/bytecodealliance/wit-bindgen"
3535
rust-version = "1.87.0"
@@ -54,16 +54,16 @@ wit-parser = "0.245.1"
5454
wit-component = "0.245.1"
5555
wasm-compose = "0.245.1"
5656

57-
wit-bindgen-core = { path = 'crates/core', version = '0.53.0' }
58-
wit-bindgen-c = { path = 'crates/c', version = '0.53.0' }
59-
wit-bindgen-cpp = { path = 'crates/cpp', version = '0.53.0' }
60-
wit-bindgen-rust = { path = "crates/rust", version = "0.53.0" }
61-
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.53.0' }
62-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.53.0' }
63-
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.53.0' }
64-
wit-bindgen-go = { path = 'crates/go', version = '0.53.0' }
65-
wit-bindgen = { path = 'crates/guest-rust', version = '0.53.0', default-features = false }
66-
wit-bindgen-test = { path = 'crates/test', version = '0.53.0' }
57+
wit-bindgen-core = { path = 'crates/core', version = '0.53.1' }
58+
wit-bindgen-c = { path = 'crates/c', version = '0.53.1' }
59+
wit-bindgen-cpp = { path = 'crates/cpp', version = '0.53.1' }
60+
wit-bindgen-rust = { path = "crates/rust", version = "0.53.1" }
61+
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.53.1' }
62+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.53.1' }
63+
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.53.1' }
64+
wit-bindgen-go = { path = 'crates/go', version = '0.53.1' }
65+
wit-bindgen = { path = 'crates/guest-rust', version = '0.53.1', default-features = false }
66+
wit-bindgen-test = { path = 'crates/test', version = '0.53.1' }
6767

6868
[workspace.lints.clippy]
6969
# The default set of lints in Clippy is viewed as "too noisy" right now so

crates/cpp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-cpp"
33
authors = ["Christof Petig <christof.petig@arcor.de>"]
4-
version = "0.53.0"
4+
version = "0.53.1"
55
edition.workspace = true
66
rust-version.workspace = true
77
repository = 'https://github.com/cpetig/wit-bindgen'

crates/guest-rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ workspace = true
1919
all-features = true
2020

2121
[dependencies]
22-
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.53.0" }
22+
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.53.1" }
2323
bitflags = { workspace = true, optional = true }
2424
futures = { version = "0.3.30", optional = true }
2525

0 Bytes
Binary file not shown.

crates/guest-rust/src/rt/wit_bindgen_cabi_realloc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
#include <stdint.h>
44

5-
extern void *cabi_realloc_wit_bindgen_0_53_0(void *ptr, size_t old_size, size_t align, size_t new_size);
5+
extern void *cabi_realloc_wit_bindgen_0_53_1(void *ptr, size_t old_size, size_t align, size_t new_size);
66

77
__attribute__((__weak__, __export_name__("cabi_realloc")))
88
void *cabi_realloc(void *ptr, size_t old_size, size_t align, size_t new_size) {
9-
return cabi_realloc_wit_bindgen_0_53_0(ptr, old_size, align, new_size);
9+
return cabi_realloc_wit_bindgen_0_53_1(ptr, old_size, align, new_size);
1010
}
0 Bytes
Binary file not shown.

crates/guest-rust/src/rt/wit_bindgen_cabi_realloc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is generated by ./ci/rebuild-libwit-bindgen-cabi.sh
22

33
#[unsafe(no_mangle)]
4-
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_53_0(
4+
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_53_1(
55
old_ptr: *mut u8,
66
old_len: usize,
77
align: usize,

0 commit comments

Comments
 (0)