diff --git a/README.md b/README.md index c8874d3..d003689 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ maven { url 'https://jitpack.io' } Then, in your app level `build.gradle` file, add the following in your `dependencies` block: ```gradle -implementation("com.github.madztheo:noir_android:0.32.0-1") +implementation("com.github.madztheo:noir_android:0.34.0-1") ``` After this your project should be able to use the library. diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index bce59ac..eb47e73 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -58,7 +58,7 @@ afterEvaluate { from(components["release"]) groupId = "com.github.madztheo" artifactId = "noir_android" - version = "v0.32.0-1" + version = "v0.34.0-1" } } } @@ -114,7 +114,7 @@ tasks.register("copyRustLibs") { } else { // Download the .so file from the GitHub release download.run { - src("https://github.com/madztheo/noir_android/releases/download/v0.32.0-1/libnoir_java_arm64-v8a.so") + src("https://github.com/madztheo/noir_android/releases/download/v0.34.0-1/libnoir_java_arm64-v8a.so") dest("src/main/jniLibs/arm64-v8a/libnoir_java.so") overwrite(false) } diff --git a/lib/src/main/java/noir_java/Cargo.toml b/lib/src/main/java/noir_java/Cargo.toml index 4611173..107832f 100644 --- a/lib/src/main/java/noir_java/Cargo.toml +++ b/lib/src/main/java/noir_java/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib"] [dependencies] jni = "0.21.1" -noir_rs = { git = "https://github.com/madztheo/noir_rs.git", branch = "v0.32.0", package = "noir_rs" } +noir_rs = { git = "https://github.com/madztheo/noir_rs.git", branch = "v0.34.0", package = "noir_rs" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" hex = "0.4.3"