Skip to content

Commit 4f30d40

Browse files
committed
Fix missing boolean conversion in JNI.
1 parent 6de10f8 commit 4f30d40

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

ci-script/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ci-script"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Émile Grégoire <[email protected]>"]
55
edition = "2018"
66

generators/c-oo-bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c-oo-bindgen"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Émile Grégoire <[email protected]>"]
55
edition = "2018"
66

generators/dotnet-oo-bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dotnet-oo-bindgen"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Émile Grégoire <[email protected]>"]
55
edition = "2018"
66

generators/java-oo-bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "java-oo-bindgen"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Émile Grégoire <[email protected]>"]
55
edition = "2018"
66

generators/java-oo-bindgen/src/rust/conversion.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ impl TypeConverter for BooleanConverter {
422422
}
423423

424424
fn convert_from_rust(&self, f: &mut dyn Printer, from: &str, to: &str) -> FormattingResult<()> {
425-
f.writeln(&format!("{}{}", to, from))
425+
f.writeln(&format!("{}{} as u8", to, from))
426426
}
427427
}
428428

generators/rust-oo-bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-oo-bindgen"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Émile Grégoire <[email protected]>"]
55
edition = "2018"
66

oo-bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oo-bindgen"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Émile Grégoire <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)