Skip to content

Commit f2393e6

Browse files
github-actions[bot]Auto Release Process
and
Auto Release Process
authored
Release wit-bindgen 0.39.0 (#1155)
[automatically-tag-and-release-this-commit] Co-authored-by: Auto Release Process <[email protected]>
1 parent de8dd39 commit f2393e6

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.38.0"
21+
version = "0.39.0"
2222
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
2323
repository = "https://github.com/bytecodealliance/wit-bindgen"
2424

@@ -39,15 +39,15 @@ wasm-metadata = "0.225.0"
3939
wit-parser = "0.225.0"
4040
wit-component = "0.225.0"
4141

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

5252
[[bin]]
5353
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.38.0" }
16-
wit-bindgen-rt = { path = "./rt", version = "0.38.0", features = ["bitflags"] }
15+
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.39.0" }
16+
wit-bindgen-rt = { path = "./rt", version = "0.39.0", features = ["bitflags"] }
1717

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

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_38_0(void *ptr, size_t old_size, size_t align, size_t new_size);
5+
extern void *cabi_realloc_wit_bindgen_0_39_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_38_0(ptr, old_size, align, new_size);
9+
return cabi_realloc_wit_bindgen_0_39_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
#[unsafe(no_mangle)]
4-
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_38_0(
4+
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_39_0(
55
old_ptr: *mut u8,
66
old_len: usize,
77
align: usize,
Binary file not shown.

0 commit comments

Comments
 (0)