Skip to content

Commit 201911d

Browse files
committed
v0.22.0
1 parent ce18a3f commit 201911d

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# j4rs
22

33
[![crates.io](https://img.shields.io/crates/v/j4rs.svg)](https://crates.io/crates/j4rs)
4-
[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.21.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
4+
[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.22.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
55
![Build](https://github.com/astonbitecode/j4rs/actions/workflows/ci-workflow.yml/badge.svg)
66

77
j4rs stands for __'Java for Rust'__ and allows effortless calls to Java code from Rust and vice-versa.
@@ -478,7 +478,7 @@ The jar for `j4rs` is available in the Maven Central. It may be used by adding t
478478
<dependency>
479479
<groupId>io.github.astonbitecode</groupId>
480480
<artifactId>j4rs</artifactId>
481-
<version>0.21.0</version>
481+
<version>0.22.0</version>
482482
<scope>provided</scope>
483483
</dependency>
484484
```

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.22.0-SNAPSHOT</version>
6+
<version>0.22.0</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.22.0-SNAPSHOT</version>
6+
<version>0.22.0</version>
77
<name>j4rs</name>
88
<description>Java for Rust</description>
99
<url>https://github.com/astonbitecode/j4rs</url>

rust/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# j4rs
22

33
[![crates.io](https://img.shields.io/crates/v/j4rs.svg)](https://crates.io/crates/j4rs)
4-
[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.21.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
4+
[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.22.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
55
![Build](https://github.com/astonbitecode/j4rs/actions/workflows/ci-workflow.yml/badge.svg)
66

77
j4rs stands for __'Java for Rust'__ and allows effortless calls to Java code from Rust and vice-versa.
@@ -478,7 +478,7 @@ The jar for `j4rs` is available in the Maven Central. It may be used by adding t
478478
<dependency>
479479
<groupId>io.github.astonbitecode</groupId>
480480
<artifactId>j4rs</artifactId>
481-
<version>0.21.0</version>
481+
<version>0.22.0</version>
482482
<scope>provided</scope>
483483
</dependency>
484484
```

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.22.0-SNAPSHOT";
23+
const VERSION: &str = "0.22.0";
2424
const JAVA_FX_VERSION: &str = "21.0.2";
2525

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

rust/jassets/j4rs-0.22.0-SNAPSHOT-jar-with-dependencies.jar renamed to rust/jassets/j4rs-0.22.0-jar-with-dependencies.jar

2.17 MB
Binary file not shown.

rust/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! # j4rs
1616
//!
1717
//![![crates.io](https://img.shields.io/crates/v/j4rs.svg)](https://crates.io/crates/j4rs)
18-
//![![Maven Central](https://img.shields.io/badge/Maven%20Central-0.21.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
18+
//![![Maven Central](https://img.shields.io/badge/Maven%20Central-0.22.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
1919
//!![Build](https://github.com/astonbitecode/j4rs/actions/workflows/ci-workflow.yml/badge.svg)
2020
//!
2121
//!j4rs stands for __'Java for Rust'__ and allows effortless calls to Java code from Rust and vice-versa.

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.22.0-SNAPSHOT</version>
6+
<version>0.22.0</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)