Skip to content

Commit dea39d0

Browse files
github-actions[bot]Auto Release Process
and
Auto Release Process
authored
Release wit-bindgen 0.32.0 (#1052)
[automatically-tag-and-release-this-commit] Co-authored-by: Auto Release Process <[email protected]>
1 parent 48722ad commit dea39d0

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

Cargo.lock

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

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resolver = "2"
1818

1919
[workspace.package]
2020
edition = "2021"
21-
version = "0.31.0"
21+
version = "0.32.0"
2222
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
2323
repository = "https://github.com/bytecodealliance/wasi-rs"
2424

@@ -38,15 +38,15 @@ wasm-metadata = "0.217.0"
3838
wit-parser = "0.217.0"
3939
wit-component = "0.217.0"
4040

41-
wit-bindgen-core = { path = 'crates/core', version = '0.31.0' }
42-
wit-bindgen-c = { path = 'crates/c', version = '0.31.0' }
43-
wit-bindgen-rust = { path = "crates/rust", version = "0.31.0" }
44-
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.31.0' }
45-
wit-bindgen-go = { path = 'crates/go', version = '0.31.0' }
46-
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.31.0' }
47-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.31.0' }
48-
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.31.0' }
49-
wit-bindgen = { path = 'crates/guest-rust', version = '0.31.0', default-features = false }
41+
wit-bindgen-core = { path = 'crates/core', version = '0.32.0' }
42+
wit-bindgen-c = { path = 'crates/c', version = '0.32.0' }
43+
wit-bindgen-rust = { path = "crates/rust", version = "0.32.0" }
44+
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.32.0' }
45+
wit-bindgen-go = { path = 'crates/go', version = '0.32.0' }
46+
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.32.0' }
47+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.32.0' }
48+
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.32.0' }
49+
wit-bindgen = { path = 'crates/guest-rust', version = '0.32.0', default-features = false }
5050

5151
[[bin]]
5252
name = "wit-bindgen"

crates/guest-rust/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Used when compiling Rust programs to the component model.
1212
"""
1313

1414
[dependencies]
15-
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.31.0" }
16-
wit-bindgen-rt = { path = "./rt", version = "0.31.0", features = ["bitflags"] }
15+
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.32.0" }
16+
wit-bindgen-rt = { path = "./rt", version = "0.32.0", features = ["bitflags"] }
1717

1818
[features]
1919
default = ["macros", "realloc"]

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

+2-2
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_31_0(void *ptr, size_t old_size, size_t align, size_t new_size);
5+
extern void *cabi_realloc_wit_bindgen_0_32_0(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_31_0(ptr, old_size, align, new_size);
9+
return cabi_realloc_wit_bindgen_0_32_0(ptr, old_size, align, new_size);
1010
}
0 Bytes
Binary file not shown.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is generated by ./ci/rebuild-libcabi-realloc.sh
22

33
#[no_mangle]
4-
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_31_0(
4+
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_32_0(
55
old_ptr: *mut u8,
66
old_len: usize,
77
align: usize,
Binary file not shown.

0 commit comments

Comments
 (0)