Skip to content

Commit 8f13001

Browse files
committed
v0.16.1: Patch for fixing ClassNotFound in Android
1 parent acc9e18 commit 8f13001

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.15.3-blue.svg)](http://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%22io.github.astonbitecode%22%20AND%20a%3A%22j4rs%22)
4+
[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.16.1-blue.svg)](http://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%22io.github.astonbitecode%22%20AND%20a%3A%22j4rs%22)
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.

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

rust/README.md

Lines changed: 1 addition & 1 deletion
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.15.3-blue.svg)](http://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%22io.github.astonbitecode%22%20AND%20a%3A%22j4rs%22)
4+
[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.16.1-blue.svg)](http://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%22io.github.astonbitecode%22%20AND%20a%3A%22j4rs%22)
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.

rust/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use java_locator;
2727
use sha2::{Digest, Sha256};
2828

2929
// This is the version of the jar that should be used
30-
const VERSION: &'static str = "0.16.1-SNAPSHOT";
30+
const VERSION: &'static str = "0.16.1";
3131

3232
fn main() -> Result<(), J4rsBuildError> {
3333
let out_dir = env::var("OUT_DIR")?;
3.02 MB
Binary file not shown.

0 commit comments

Comments
 (0)