Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion snippets/csharp/Snippets.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Nostr.Sdk" Version="0.44.0" />
<PackageReference Include="Nostr.Sdk" Version="0.44.2" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion snippets/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion snippets/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mnemonic==0.21
nostr-sdk==0.44.0
nostr-sdk==0.44.2
pyright==1.1.399
2 changes: 1 addition & 1 deletion snippets/swift/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
12 changes: 6 additions & 6 deletions src/sdk/install.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.44.0
nostr-sdk==0.44.2
```

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

dependencies {
implementation("org.rust-nostr:nostr-sdk:0.44.0")
implementation("org.rust-nostr:nostr-sdk:0.44.2")
}
```

Expand All @@ -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")
}
```

Expand All @@ -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")
}
```

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down