Skip to content

Commit

Permalink
Bump to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Imperiopolis committed Jul 20, 2023
1 parent 6584524 commit 6742e5d
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 35 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ default-members = ["rust/sdk/client"]
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.1.1"
license = "MIT"

[workspace.dependencies]
juicebox-sdk = { path = "rust/sdk/client", version = "0.1.0" }
juicebox-sdk-core = { path = "rust/sdk/core", version = "0.1.0" }
juicebox-sdk-marshalling = { path = "rust/sdk/marshalling", version = "0.1.0" }
juicebox-sdk-networking = { path = "rust/sdk/networking", version = "0.1.0" }
juicebox-sdk-noise = { path = "rust/sdk/noise", version = "0.1.0" }
juicebox-sdk-process-group = { path = "rust/sdk/process_group", version = "0.1.0" }
juicebox-sdk-realm-auth = { path = "rust/sdk/realm_auth", version = "0.1.0" }
juicebox-sdk-secret-sharing = { path = "rust/sdk/secret_sharing", version = "0.1.0" }
juicebox-sdk-software-realm = { path = "rust/sdk/software_realm", version = "0.1.0" }
juicebox-sdk-bridge = { path = "rust/bridge/common", version = "0.1.0" }
juicebox-sdk-ffi = { path = "rust/bridge/ffi", version = "0.1.0" }
juicebox-sdk-jni = { path = "rust/bridge/jni", version = "0.1.0" }
juicebox-sdk-wasm = { path = "rust/bridge/wasm", version = "0.1.0" }
juicebox-sdk = { path = "rust/sdk/client", version = "0.1.1" }
juicebox-sdk-core = { path = "rust/sdk/core", version = "0.1.1" }
juicebox-sdk-marshalling = { path = "rust/sdk/marshalling", version = "0.1.1" }
juicebox-sdk-networking = { path = "rust/sdk/networking", version = "0.1.1" }
juicebox-sdk-noise = { path = "rust/sdk/noise", version = "0.1.1" }
juicebox-sdk-process-group = { path = "rust/sdk/process_group", version = "0.1.1" }
juicebox-sdk-realm-auth = { path = "rust/sdk/realm_auth", version = "0.1.1" }
juicebox-sdk-secret-sharing = { path = "rust/sdk/secret_sharing", version = "0.1.1" }
juicebox-sdk-software-realm = { path = "rust/sdk/software_realm", version = "0.1.1" }
juicebox-sdk-bridge = { path = "rust/bridge/common", version = "0.1.1" }
juicebox-sdk-ffi = { path = "rust/bridge/ffi", version = "0.1.1" }
juicebox-sdk-jni = { path = "rust/bridge/jni", version = "0.1.1" }
juicebox-sdk-wasm = { path = "rust/bridge/wasm", version = "0.1.1" }

argon2 = "0.5.0"
async-trait = "0.1.64"
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' => '[email protected]' }
s.version = '0.1.0'
s.version = '0.1.1'
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 @@ -15,7 +15,7 @@ repositories {
}
dependencies {
implementation 'xyz.juicebox:sdk:0.1.0'
implementation 'xyz.juicebox:sdk:0.1.1'
}
```

Expand All @@ -25,7 +25,7 @@ dependencies {
<dependency>
<groupId>xyz.juicebox</groupId>
<artifactId>sdk</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
</dependency>
```

Expand Down
3 changes: 2 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ preBuild {

def getVersionName() {
try {
return hasProperty('versionString') ? versionString : 'git describe --tags --exact-match'.execute().text.trim()
return hasProperty('versionString') ? versionString
: 'git describe --tags --exact-match'.execute().text.trim()
} catch (Exception e) {
throw new GradleException("Git tag not found. Please make sure you have tagged your commit.")
}
Expand Down
4 changes: 2 additions & 2 deletions rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ cargo add juicebox-sdk
Or add the following line to your Cargo.toml:

```
juicebox-sdk = "0.1.0"
juicebox-sdk = "0.1.1"
```

Additionally, you may wish to enable the `tokio` or `reqwest` [features](#features) to simplify usage:

```
juicebox-sdk = { version = "0.1.0", features = ["tokio", "reqwest"] }
juicebox-sdk = { version = "0.1.1", features = ["tokio", "reqwest"] }
```

### Usage
Expand Down

0 comments on commit 6742e5d

Please sign in to comment.