Skip to content

Commit 0654671

Browse files
committed
v0.21.0
1 parent 9d82962 commit 0654671

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

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.20.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/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/)
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.
@@ -454,7 +454,7 @@ The jar for `j4rs` is available in the Maven Central. It may be used by adding t
454454
<dependency>
455455
<groupId>io.github.astonbitecode</groupId>
456456
<artifactId>j4rs</artifactId>
457-
<version>0.20.0</version>
457+
<version>0.21.0</version>
458458
<scope>provided</scope>
459459
</dependency>
460460
```

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-SNAPSHOT</version>
6+
<version>0.21.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.21.0-SNAPSHOT</version>
6+
<version>0.21.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.20.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/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/)
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.
@@ -454,7 +454,7 @@ The jar for `j4rs` is available in the Maven Central. It may be used by adding t
454454
<dependency>
455455
<groupId>io.github.astonbitecode</groupId>
456456
<artifactId>j4rs</artifactId>
457-
<version>0.20.0</version>
457+
<version>0.21.0</version>
458458
<scope>provided</scope>
459459
</dependency>
460460
```

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

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

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.20.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/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/)
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.21.0-SNAPSHOT</version>
6+
<version>0.21.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)