Skip to content

Commit a438745

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

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resolver = "2"
1818

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

2323
[workspace.dependencies]
2424
anyhow = "1.0.72"
@@ -35,14 +35,14 @@ wasm-metadata = "0.200.0"
3535
wit-parser = "0.200.0"
3636
wit-component = "0.200.0"
3737

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

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

crates/guest-rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Used when compiling Rust programs to the component model.
1212
"""
1313

1414
[dependencies]
15-
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.19.1" }
15+
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.19.2" }
1616
bitflags = { workspace = true }
1717

1818
[features]

crates/guest-rust/src/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_19_1(void *ptr, size_t old_size, size_t align, size_t new_size);
5+
extern void *cabi_realloc_wit_bindgen_0_19_2(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_19_1(ptr, old_size, align, new_size);
9+
return cabi_realloc_wit_bindgen_0_19_2(ptr, old_size, align, new_size);
1010
}

crates/guest-rust/src/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-libcabi-realloc.sh
22

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

0 commit comments

Comments
 (0)