Skip to content

Commit 749bacc

Browse files
github-actions[bot]Auto Release Process
and
Auto Release Process
authored
Release wit-bindgen 0.27.0 (#989)
[automatically-tag-and-release-this-commit] Co-authored-by: Auto Release Process <[email protected]>
1 parent 46f4514 commit 749bacc

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

Diff for: Cargo.lock

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

Diff for: Cargo.toml

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

1919
[workspace.package]
2020
edition = "2021"
21-
version = "0.26.0"
21+
version = "0.27.0"
2222

2323
[workspace.dependencies]
2424
anyhow = "1.0.72"
@@ -36,14 +36,14 @@ wasm-metadata = "0.212.0"
3636
wit-parser = "0.212.0"
3737
wit-component = "0.212.0"
3838

39-
wit-bindgen-core = { path = 'crates/core', version = '0.26.0' }
40-
wit-bindgen-c = { path = 'crates/c', version = '0.26.0' }
41-
wit-bindgen-rust = { path = "crates/rust", version = "0.26.0" }
42-
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.26.0' }
43-
wit-bindgen-go = { path = 'crates/go', version = '0.26.0' }
44-
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.26.0' }
45-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.26.0' }
46-
wit-bindgen = { path = 'crates/guest-rust', version = '0.26.0', default-features = false }
39+
wit-bindgen-core = { path = 'crates/core', version = '0.27.0' }
40+
wit-bindgen-c = { path = 'crates/c', version = '0.27.0' }
41+
wit-bindgen-rust = { path = "crates/rust", version = "0.27.0" }
42+
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.27.0' }
43+
wit-bindgen-go = { path = 'crates/go', version = '0.27.0' }
44+
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.27.0' }
45+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.27.0' }
46+
wit-bindgen = { path = 'crates/guest-rust', version = '0.27.0', default-features = false }
4747

4848
[[bin]]
4949
name = "wit-bindgen"

Diff for: 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.26.0" }
16-
wit-bindgen-rt = { path = "./rt", version = "0.26.0", features = ["bitflags"] }
15+
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.27.0" }
16+
wit-bindgen-rt = { path = "./rt", version = "0.27.0", features = ["bitflags"] }
1717

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

Diff for: 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_26_0(void *ptr, size_t old_size, size_t align, size_t new_size);
5+
extern void *cabi_realloc_wit_bindgen_0_27_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_26_0(ptr, old_size, align, new_size);
9+
return cabi_realloc_wit_bindgen_0_27_0(ptr, old_size, align, new_size);
1010
}

Diff for: crates/guest-rust/rt/src/cabi_realloc.o

0 Bytes
Binary file not shown.

Diff for: 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_26_0(
4+
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_27_0(
55
old_ptr: *mut u8,
66
old_len: usize,
77
align: usize,
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)