Skip to content

Commit 727db73

Browse files
committed
Bump v0.22.0 (SNAPSHOT)
1 parent 0654671 commit 727db73

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

java-fx/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.github.astonbitecode</groupId>
55
<artifactId>j4rs-javafx</artifactId>
6-
<version>0.21.0</version>
6+
<version>0.22.0-SNAPSHOT</version>
77
<name>j4rs-javafx</name>
88
<description>Java for Rust - JavaFX support</description>
99
<url>https://github.com/astonbitecode/j4rs</url>

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.github.astonbitecode</groupId>
55
<artifactId>j4rs</artifactId>
6-
<version>0.21.0</version>
6+
<version>0.22.0-SNAPSHOT</version>
77
<name>j4rs</name>
88
<description>Java for Rust</description>
99
<url>https://github.com/astonbitecode/j4rs</url>

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "j4rs"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["aston <[email protected]>"]
55
description = "j4rs stands for 'Java for Rust' and allows effortless calls to Java code, from Rust"
66
keywords = ["java", "jni"]

rust/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use std::{env, fs};
2020
use fs_extra::dir::CopyOptions;
2121

2222
// This is the version of the jar that should be used
23-
const VERSION: &str = "0.21.0";
23+
const VERSION: &str = "0.22.0-SNAPSHOT";
2424
const JAVA_FX_VERSION: &str = "21.0.2";
2525

2626
fn main() -> Result<(), J4rsBuildError> {

test-resources/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.github.astonbitecode</groupId>
55
<artifactId>j4rs-testing</artifactId>
6-
<version>0.21.0</version>
6+
<version>0.22.0-SNAPSHOT</version>
77
<name>j4rs-testing</name>
88
<description>Testing resources for j4rs</description>
99
<url>https://github.com/astonbitecode/j4rs</url>

0 commit comments

Comments
 (0)