Skip to content

Commit

Permalink
upgrade to Noir 0.35
Browse files Browse the repository at this point in the history
  • Loading branch information
madztheo committed Oct 27, 2024
1 parent 20c90fb commit 3221c88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.34.0-1")
implementation("com.github.madztheo:noir_android:0.35.0-1")
```

After this your project should be able to use the library.
Expand Down
4 changes: 2 additions & 2 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ afterEvaluate {
from(components["release"])
groupId = "com.github.madztheo"
artifactId = "noir_android"
version = "v0.34.0-1"
version = "v0.35.0-1"
}
}
}
Expand Down Expand Up @@ -114,7 +114,7 @@ tasks.register<Copy>("copyRustLibs") {
} else {
// Download the .so file from the GitHub release
download.run {
src("https://github.com/madztheo/noir_android/releases/download/v0.34.0-1/libnoir_java_arm64-v8a.so")
src("https://github.com/madztheo/noir_android/releases/download/v0.35.0-1/libnoir_java_arm64-v8a.so")
dest("src/main/jniLibs/arm64-v8a/libnoir_java.so")
overwrite(false)
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/java/noir_java/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib"]

[dependencies]
jni = "0.21.1"
noir_rs = { git = "https://github.com/madztheo/noir_rs.git", branch = "v0.34.0", package = "noir_rs" }
noir_rs = { git = "https://github.com/zkpassport/noir_rs.git", branch = "v0.35.0", package = "noir_rs" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4.3"
Expand Down

0 comments on commit 3221c88

Please sign in to comment.