Skip to content

Commit

Permalink
ffi: bump to v0.32.2
Browse files Browse the repository at this point in the history
Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
(cherry picked from commit f9010ee)
yukibtc committed Jun 14, 2024
1 parent df7d1ab commit 4d0e426
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ mavenPublishing {

signAllPublications()

coordinates("org.rust-nostr", "nostr-sdk", "0.32.1")
coordinates("org.rust-nostr", "nostr-sdk", "0.32.2")

pom {
name.set("nostr-sdk")
2 changes: 1 addition & 1 deletion bindings/nostr-sdk-ffi/bindings-python/setup.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@

setup(
name='nostr-sdk',
version='0.32.1',
version='0.32.2',
description="High level Nostr client library.",
long_description=long_description,
long_description_content_type='text/markdown',
6 changes: 3 additions & 3 deletions book/src/nostr-sdk/02-installation.md
Original file line number Diff line number Diff line change
@@ -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.32.1
nostr-sdk==0.32.2
```

Import the library in your code:
@@ -152,7 +152,7 @@ repositories {
}

dependencies {
implementation("org.rust-nostr:nostr-sdk:0.32.1")
implementation("org.rust-nostr:nostr-sdk:0.32.2")
}
```

@@ -202,7 +202,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.32.1"),
.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.32.2"),
```

</section>

0 comments on commit 4d0e426

Please sign in to comment.