Skip to content

Commit

Permalink
Bump v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
astonbitecode committed Apr 9, 2024
1 parent ceb2422 commit d6dd324
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
java-version: '17'
distribution: 'adopt'
- name: Build and Test Java with Maven
run: mvn -f ./java/pom.xml --batch-mode --update-snapshots package
run: mvn -f ./java/pom.xml --batch-mode --update-snapshots install
- name: Build and install Java testing resources with Maven
run: mvn -f ./test-resources/java/pom.xml --batch-mode --update-snapshots install
- name: Build Rust with Cargo
run: cargo build --manifest-path ./rust/Cargo.toml --verbose
- name: Test Rust with Cargo
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.18.0-SNAPSHOT</version>
<version>0.18.0</version>
<name>j4rs</name>
<description>Java for Rust</description>
<url>https://github.com/astonbitecode/j4rs</url>
Expand Down
2 changes: 1 addition & 1 deletion rust/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use java_locator;
use sha2::{Digest, Sha256};

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

fn main() -> Result<(), J4rsBuildError> {
Expand Down
Binary file not shown.
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.18.0-SNAPSHOT</version>
<version>0.18.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 d6dd324

Please sign in to comment.