Skip to content

Commit

Permalink
0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Imperiopolis committed Aug 14, 2024
1 parent 8f30aea commit 5a9631c
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 52 deletions.
1 change: 1 addition & 0 deletions .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ jobs:
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ignore: 'RUSTSEC-2023-0071'
55 changes: 24 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ default-members = ["rust/sdk"]
resolver = "2"

[workspace.package]
version = "0.3.1"
version = "0.3.2"
license = "MIT"
authors = [
"Simon Fell <simon@juicebox.me>",
Expand All @@ -31,20 +31,20 @@ authors = [
rust-version = "1.75"

[workspace.dependencies]
juicebox_marshalling = { path = "rust/marshalling", version = "0.3.1" }
juicebox_networking = { path = "rust/networking", version = "0.3.1" }
juicebox_noise = { path = "rust/noise", version = "0.3.1" }
juicebox_oprf = { path = "rust/oprf", version = "0.3.1" }
juicebox_process_group = { path = "rust/process_group", version = "0.3.1" }
juicebox_realm_api = { path = "rust/realm/api", version = "0.3.1" }
juicebox_realm_auth = { path = "rust/realm/auth", version = "0.3.1" }
juicebox_secret_sharing = { path = "rust/secret_sharing", version = "0.3.1" }
juicebox_sdk = { path = "rust/sdk", version = "0.3.1" }
juicebox_sdk_bridge = { path = "rust/sdk/bridge", version = "0.3.1" }
juicebox_sdk_ffi = { path = "rust/sdk/bridge/ffi", version = "0.3.1" }
juicebox_sdk_jni = { path = "rust/sdk/bridge/jni", version = "0.3.1" }
juicebox_sdk_wasm = { path = "rust/sdk/bridge/wasm", version = "0.3.1" }
juicebox_software_realm_runner = { path = "rust/software_realm_runner", version = "0.3.1" }
juicebox_marshalling = { path = "rust/marshalling", version = "0.3.2" }
juicebox_networking = { path = "rust/networking", version = "0.3.2" }
juicebox_noise = { path = "rust/noise", version = "0.3.2" }
juicebox_oprf = { path = "rust/oprf", version = "0.3.2" }
juicebox_process_group = { path = "rust/process_group", version = "0.3.2" }
juicebox_realm_api = { path = "rust/realm/api", version = "0.3.2" }
juicebox_realm_auth = { path = "rust/realm/auth", version = "0.3.2" }
juicebox_secret_sharing = { path = "rust/secret_sharing", version = "0.3.2" }
juicebox_sdk = { path = "rust/sdk", version = "0.3.2" }
juicebox_sdk_bridge = { path = "rust/sdk/bridge", version = "0.3.2" }
juicebox_sdk_ffi = { path = "rust/sdk/bridge/ffi", version = "0.3.2" }
juicebox_sdk_jni = { path = "rust/sdk/bridge/jni", version = "0.3.2" }
juicebox_sdk_wasm = { path = "rust/sdk/bridge/wasm", version = "0.3.2" }
juicebox_software_realm_runner = { path = "rust/software_realm_runner", version = "0.3.2" }

argon2 = { version = "0.5.2", default-features = false, features = [
"alloc",
Expand Down
2 changes: 1 addition & 1 deletion JuiceboxSdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|
s.name = 'JuiceboxSdk'
s.license = 'MIT'
s.author = { 'Nora Trapp' => 'nora@juicebox.me' }
s.version = '0.3.1'
s.version = '0.3.2'
s.summary = 'A Swift wrapper library for interfacing with the Juicebox service.'

s.homepage = 'https://github.com/juicebox-systems/juicebox-sdk'
Expand Down
4 changes: 2 additions & 2 deletions android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {
}
dependencies {
implementation 'xyz.juicebox:sdk:0.3.1'
implementation 'xyz.juicebox:sdk:0.3.2'
}
```

Expand All @@ -23,7 +23,7 @@ dependencies {
<dependency>
<groupId>xyz.juicebox</groupId>
<artifactId>sdk</artifactId>
<version>0.3.1</version>
<version>0.3.2</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions javascript/web-demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-demo",
"version": "0.3.1",
"version": "0.3.2",
"description": "",
"author": "Nora Trapp <nora@juicebox.me>",
"license": "MIT",
Expand Down Expand Up @@ -30,7 +30,7 @@
"@babel/polyfill": "^7.12.1",
"buffer": "^6.0.3",
"http-server": "^14.1.1",
"juicebox-sdk": "^0.3.1",
"juicebox-sdk": "^0.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
Expand Down

0 comments on commit 5a9631c

Please sign in to comment.