Skip to content

Commit

Permalink
ffi(sdk): bump to v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yukibtc committed Feb 17, 2024
1 parent 37ef11d commit dc12fe6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bindings/nostr-sdk-ffi/bindings-android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
libraryVersion=0.9.0
libraryVersion=0.9.1
2 changes: 1 addition & 1 deletion bindings/nostr-sdk-ffi/bindings-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='nostr-sdk',
version='0.9.0',
version='0.9.1',
description="High level client library.",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
6 changes: 3 additions & 3 deletions book/src/nostr-sdk/02-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pip install nostr-sdk
Alternatively, you can manually add the dependency in your `requrements.txt`, `setup.py`, etc.:

```
nostr-sdk==0.9.0
nostr-sdk==0.9.1
```

Import the library in your code:
Expand Down Expand Up @@ -140,7 +140,7 @@ repositories {
}

dependencies {
implementation("io.github.rust-nostr:nostr-sdk:0.9.0")
implementation("io.github.rust-nostr:nostr-sdk:0.9.1")
}
```

Expand Down Expand Up @@ -190,7 +190,7 @@ as a package dependency in Xcode.
Add the following to the dependencies array in your `Package.swift`:

``` swift
.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.9.0"),
.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.9.1"),
```

</section>
Expand Down

0 comments on commit dc12fe6

Please sign in to comment.