Skip to content

Commit

Permalink
v0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
astonbitecode committed Nov 5, 2024
1 parent 9d82962 commit 0654671
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# j4rs

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

j4rs stands for __'Java for Rust'__ and allows effortless calls to Java code from Rust and vice-versa.
Expand Down Expand Up @@ -454,7 +454,7 @@ The jar for `j4rs` is available in the Maven Central. It may be used by adding t
<dependency>
<groupId>io.github.astonbitecode</groupId>
<artifactId>j4rs</artifactId>
<version>0.20.0</version>
<version>0.21.0</version>
<scope>provided</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion java-fx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.astonbitecode</groupId>
<artifactId>j4rs-javafx</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.0</version>
<name>j4rs-javafx</name>
<description>Java for Rust - JavaFX support</description>
<url>https://github.com/astonbitecode/j4rs</url>
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.astonbitecode</groupId>
<artifactId>j4rs</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.0</version>
<name>j4rs</name>
<description>Java for Rust</description>
<url>https://github.com/astonbitecode/j4rs</url>
Expand Down
4 changes: 2 additions & 2 deletions rust/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# j4rs

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

j4rs stands for __'Java for Rust'__ and allows effortless calls to Java code from Rust and vice-versa.
Expand Down Expand Up @@ -454,7 +454,7 @@ The jar for `j4rs` is available in the Maven Central. It may be used by adding t
<dependency>
<groupId>io.github.astonbitecode</groupId>
<artifactId>j4rs</artifactId>
<version>0.20.0</version>
<version>0.21.0</version>
<scope>provided</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion rust/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use std::{env, fs};
use fs_extra::dir::CopyOptions;

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

fn main() -> Result<(), J4rsBuildError> {
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//! # j4rs
//!
//![![crates.io](https://img.shields.io/crates/v/j4rs.svg)](https://crates.io/crates/j4rs)
//![![Maven Central](https://img.shields.io/badge/Maven%20Central-0.20.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
//![![Maven Central](https://img.shields.io/badge/Maven%20Central-0.21.0-blue.svg)](https://central.sonatype.com/artifact/io.github.astonbitecode/j4rs/)
//!![Build](https://github.com/astonbitecode/j4rs/actions/workflows/ci-workflow.yml/badge.svg)
//!
//!j4rs stands for __'Java for Rust'__ and allows effortless calls to Java code from Rust and vice-versa.
Expand Down
2 changes: 1 addition & 1 deletion test-resources/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.astonbitecode</groupId>
<artifactId>j4rs-testing</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.0</version>
<name>j4rs-testing</name>
<description>Testing resources for j4rs</description>
<url>https://github.com/astonbitecode/j4rs</url>
Expand Down

0 comments on commit 0654671

Please sign in to comment.