From fc3238fca58e3c142c1bbc46e7476de35eaf0341 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Thu, 29 Jan 2026 12:18:02 +0100 Subject: [PATCH] Release v0.44.2 Signed-off-by: Yuki Kishimoto --- snippets/csharp/Snippets.csproj | 2 +- snippets/kotlin/build.gradle.kts | 2 +- snippets/python/requirements.txt | 2 +- snippets/swift/Package.swift | 2 +- src/sdk/install.md | 12 ++++++------ 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/snippets/csharp/Snippets.csproj b/snippets/csharp/Snippets.csproj index 2b6f06e..3d7568b 100644 --- a/snippets/csharp/Snippets.csproj +++ b/snippets/csharp/Snippets.csproj @@ -8,7 +8,7 @@ - + diff --git a/snippets/kotlin/build.gradle.kts b/snippets/kotlin/build.gradle.kts index 242bf12..d6dc4cc 100644 --- a/snippets/kotlin/build.gradle.kts +++ b/snippets/kotlin/build.gradle.kts @@ -11,7 +11,7 @@ repositories { dependencies { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") - implementation("org.rust-nostr:nostr-sdk-jvm:0.44.0") + implementation("org.rust-nostr:nostr-sdk-jvm:0.44.2") } tasks.test { diff --git a/snippets/python/requirements.txt b/snippets/python/requirements.txt index 5be7884..f498746 100644 --- a/snippets/python/requirements.txt +++ b/snippets/python/requirements.txt @@ -1,3 +1,3 @@ mnemonic==0.21 -nostr-sdk==0.44.0 +nostr-sdk==0.44.2 pyright==1.1.399 diff --git a/snippets/swift/Package.swift b/snippets/swift/Package.swift index bf1c61a..dd7153c 100644 --- a/snippets/swift/Package.swift +++ b/snippets/swift/Package.swift @@ -7,7 +7,7 @@ let package = Package( name: "NostrSnippets", platforms: [.macOS(.v12)], dependencies: [ - .package(url: "https://github.com/rust-nostr/nostr-sdk-swift", from: "0.44.0") + .package(url: "https://github.com/rust-nostr/nostr-sdk-swift", from: "0.44.2") ], targets: [ .executableTarget( diff --git a/src/sdk/install.md b/src/sdk/install.md index fe40764..37863d2 100644 --- a/src/sdk/install.md +++ b/src/sdk/install.md @@ -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.44.0 +nostr-sdk==0.44.2 ``` Import the library in your code: @@ -154,7 +154,7 @@ repositories { } dependencies { - implementation("org.rust-nostr:nostr-sdk:0.44.0") + implementation("org.rust-nostr:nostr-sdk:0.44.2") } ``` @@ -166,7 +166,7 @@ repositories { } dependencies { - implementation("org.rust-nostr:nostr-sdk-jvm:0.44.0") + implementation("org.rust-nostr:nostr-sdk-jvm:0.44.2") } ``` @@ -178,7 +178,7 @@ repositories { } dependencies { - implementation("org.rust-nostr:nostr-sdk-kmp:0.44.0") + implementation("org.rust-nostr:nostr-sdk-kmp:0.44.2") } ``` @@ -254,7 +254,7 @@ as a package dependency in Xcode. Add the following to the dependency array in your `Package.swift`: ``` swift -.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.44.0"), +.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.44.2"), ``` ## Supported platforms @@ -283,7 +283,7 @@ Are you interested in other platforms? Open an issue [here](https://github.com/r The `Nostr.Sdk` package is available on [nuget](https://www.nuget.org/packages/Nostr.Sdk): ```bash -dotnet add package Nostr.Sdk --version 0.44.0 +dotnet add package Nostr.Sdk --version 0.44.2 ``` ## Requirements and supported platforms