Skip to content

Commit 8c295f5

Browse files
committed
Bump 0.16.0 and update dependencies
1 parent 52dd173 commit 8c295f5

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

java/pom.xml

Lines changed: 10 additions & 10 deletions
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.0-SNAPSHOT</version>
6+
<version>0.16.0</version>
77
<name>j4rs</name>
88
<description>Java for Rust</description>
99
<url>https://github.com/astonbitecode/j4rs</url>
@@ -51,18 +51,18 @@
5151
</distributionManagement>
5252

5353
<properties>
54-
<maven.surefire.version>3.0.0-M8</maven.surefire.version>
54+
<maven.surefire.version>3.1.2</maven.surefire.version>
5555
<junit.version>4.13.2</junit.version>
5656
<maven.jar.plugin.version>3.3.0</maven.jar.plugin.version>
5757
<nexus.staging.plugin.version>1.6.13</nexus.staging.plugin.version>
58-
<maven.gpg.plugin.version>3.0.1</maven.gpg.plugin.version>
59-
<maven.source.plugin.version>3.2.1</maven.source.plugin.version>
60-
<maven.javadoc.plugin.version>3.4.1</maven.javadoc.plugin.version>
61-
<maven.assembly.plugin.version>3.4.2</maven.assembly.plugin.version>
62-
<logback.version>1.3.6</logback.version>
63-
<build.plugins.plugin.version>3.10.1</build.plugins.plugin.version>
64-
<jackson.version>2.14.1</jackson.version>
65-
<mockito.version>4.11.0</mockito.version>
58+
<maven.gpg.plugin.version>3.1.0</maven.gpg.plugin.version>
59+
<maven.source.plugin.version>3.3.0</maven.source.plugin.version>
60+
<maven.javadoc.plugin.version>3.5.0</maven.javadoc.plugin.version>
61+
<maven.assembly.plugin.version>3.6.0</maven.assembly.plugin.version>
62+
<logback.version>1.3.8</logback.version>
63+
<build.plugins.plugin.version>3.11.0</build.plugins.plugin.version>
64+
<jackson.version>2.15.2</jackson.version>
65+
<mockito.version>5.4.0</mockito.version>
6666
<javafx.version>13.0.2</javafx.version>
6767
</properties>
6868
<dependencies>

rust/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ serde_json = "1.0"
2828
lazy_static = "1.4"
2929
java-locator = { version = "0.1", optional = true }
3030
fs_extra = "1.3"
31-
libloading = { version = "0.7", optional = true }
31+
libloading = { version = "0.8", optional = true }
3232
cesu8 = "1.1.0"
3333
dunce = "1.0"
3434
futures = "0.3"
3535

3636
[build-dependencies]
3737
fs_extra = "1.3"
38-
dirs = "4.0"
38+
dirs = "5.0"
3939
glob = "0.3"
4040
java-locator = "0.1"
4141
sha2 = "0.10"
4242

4343
[dev-dependencies]
44-
criterion = { version = "0.4", features = ["html_reports"] }
44+
criterion = { version = "0.5", features = ["html_reports"] }
4545
tokio = { version = "1.28", features = ["full"] }
4646
async-std = {version = "1.12", features = ["attributes"]}
4747

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.0-SNAPSHOT";
30+
const VERSION: &'static str = "0.16.0";
3131

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

0 commit comments

Comments
 (0)