diff --git a/java/pom.xml b/java/pom.xml index f2bcfaf..92ddbec 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -3,7 +3,7 @@ 4.0.0 io.github.astonbitecode j4rs - 0.18.0 + 0.19.0-SNAPSHOT j4rs Java for Rust https://github.com/astonbitecode/j4rs diff --git a/rust/Cargo.toml b/rust/Cargo.toml index de668e5..3e06880 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j4rs" -version = "0.18.0" +version = "0.19.0" authors = ["aston "] description = "j4rs stands for 'Java for Rust' and allows effortless calls to Java code, from Rust" keywords = ["java", "jni"] diff --git a/rust/build.rs b/rust/build.rs index 144a5a2..7a01510 100644 --- a/rust/build.rs +++ b/rust/build.rs @@ -27,7 +27,7 @@ use java_locator; use sha2::{Digest, Sha256}; // This is the version of the jar that should be used -const VERSION: &'static str = "0.18.0"; +const VERSION: &'static str = "0.19.0-SNAPSHOT"; const JAVA_FX_VERSION: &'static str = "21.0.2"; fn main() -> Result<(), J4rsBuildError> { diff --git a/rust/jassets/j4rs-0.18.0-jar-with-dependencies.jar b/rust/jassets/j4rs-0.19.0-SNAPSHOT-jar-with-dependencies.jar similarity index 99% rename from rust/jassets/j4rs-0.18.0-jar-with-dependencies.jar rename to rust/jassets/j4rs-0.19.0-SNAPSHOT-jar-with-dependencies.jar index aab0e5f..1b69de4 100644 Binary files a/rust/jassets/j4rs-0.18.0-jar-with-dependencies.jar and b/rust/jassets/j4rs-0.19.0-SNAPSHOT-jar-with-dependencies.jar differ diff --git a/test-resources/java/pom.xml b/test-resources/java/pom.xml index 99ebfb1..401cf87 100644 --- a/test-resources/java/pom.xml +++ b/test-resources/java/pom.xml @@ -3,7 +3,7 @@ 4.0.0 io.github.astonbitecode j4rs-testing - 0.18.0 + 0.19.0-SNAPSHOT j4rs-testing Testing resources for j4rs https://github.com/astonbitecode/j4rs