Skip to content

Commit 4c0e9a4

Browse files
github-actions[bot]Auto Release Process
andauthored
Release wit-bindgen 0.46.0 (#1384)
[automatically-tag-and-release-this-commit] Co-authored-by: Auto Release Process <auto-release-process@users.noreply.github.com>
1 parent 6b57720 commit 4c0e9a4

File tree

8 files changed

+26
-26
lines changed

8 files changed

+26
-26
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resolver = "2"
1616

1717
[workspace.package]
1818
edition = "2021"
19-
version = "0.45.1"
19+
version = "0.46.0"
2020
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
2121
repository = "https://github.com/bytecodealliance/wit-bindgen"
2222
rust-version = "1.82.0"
@@ -41,15 +41,15 @@ wit-parser = "0.239.0"
4141
wit-component = "0.239.0"
4242
wasm-compose = "0.239.0"
4343

44-
wit-bindgen-core = { path = 'crates/core', version = '0.45.1' }
45-
wit-bindgen-c = { path = 'crates/c', version = '0.45.1' }
46-
wit-bindgen-cpp = { path = 'crates/cpp', version = '0.45.1' }
47-
wit-bindgen-rust = { path = "crates/rust", version = "0.45.1" }
48-
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.45.1' }
49-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.45.1' }
50-
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.45.1' }
51-
wit-bindgen = { path = 'crates/guest-rust', version = '0.45.1', default-features = false }
52-
wit-bindgen-test = { path = 'crates/test', version = '0.45.1' }
44+
wit-bindgen-core = { path = 'crates/core', version = '0.46.0' }
45+
wit-bindgen-c = { path = 'crates/c', version = '0.46.0' }
46+
wit-bindgen-cpp = { path = 'crates/cpp', version = '0.46.0' }
47+
wit-bindgen-rust = { path = "crates/rust", version = "0.46.0" }
48+
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.46.0' }
49+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.46.0' }
50+
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.46.0' }
51+
wit-bindgen = { path = 'crates/guest-rust', version = '0.46.0', default-features = false }
52+
wit-bindgen-test = { path = 'crates/test', version = '0.46.0' }
5353

5454
[[bin]]
5555
name = "wit-bindgen"

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.45.1"
4+
version = "0.46.0"
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
@@ -16,7 +16,7 @@ Used when compiling Rust programs to the component model.
1616
all-features = true
1717

1818
[dependencies]
19-
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.45.1" }
19+
wit-bindgen-rust-macro = { path = "./macro", optional = true, version = "0.46.0" }
2020
bitflags = { workspace = true, optional = true }
2121
futures = { version = "0.3.30", optional = true }
2222
once_cell = { version = "1.19.0", optional = true }
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_45_1(void *ptr, size_t old_size, size_t align, size_t new_size);
5+
extern void *cabi_realloc_wit_bindgen_0_46_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_45_1(ptr, old_size, align, new_size);
9+
return cabi_realloc_wit_bindgen_0_46_0(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_45_1(
4+
pub unsafe extern "C" fn cabi_realloc_wit_bindgen_0_46_0(
55
old_ptr: *mut u8,
66
old_len: usize,
77
align: usize,

0 commit comments

Comments
 (0)