Skip to content

Commit 17223a1

Browse files
committed
book: bump bindings versions
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent a1f69a2 commit 17223a1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

book/src/nostr-sdk/02-installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pip install nostr-sdk
4343
Alternatively, you can manually add the dependency in your `requrements.txt`, `setup.py`, etc.:
4444

4545
```
46-
nostr-sdk==0.12.0
46+
nostr-sdk==0.12.1
4747
```
4848

4949
Import the library in your code:
@@ -88,7 +88,7 @@ Alternatively, you can manually add the dependency in your `package.json` file:
8888
```json
8989
{
9090
"dependencies": {
91-
"@rust-nostr/nostr-sdk": "0.14.0"
91+
"@rust-nostr/nostr-sdk": "0.14.1"
9292
}
9393
}
9494
```
@@ -140,7 +140,7 @@ repositories {
140140
}
141141

142142
dependencies {
143-
implementation("io.github.rust-nostr:nostr-sdk:0.12.0")
143+
implementation("io.github.rust-nostr:nostr-sdk:0.12.1")
144144
}
145145
```
146146

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

192192
``` swift
193-
.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.12.0"),
193+
.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.12.1"),
194194
```
195195

196196
</section>

book/src/nostr/02-installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pip install nostr-protocol
4343
Alternatively, you can manually add the dependency in your `requrements.txt`, `setup.py`, etc.:
4444

4545
```
46-
nostr-protocol==0.12.0
46+
nostr-protocol==0.12.1
4747
```
4848

4949
Import the library in your code:
@@ -87,7 +87,7 @@ Alternatively, you can manually add the dependency in your `package.json` file:
8787
```json
8888
{
8989
"dependencies": {
90-
"@rust-nostr/nostr": "0.14.0"
90+
"@rust-nostr/nostr": "0.14.1"
9191
}
9292
}
9393
```
@@ -139,7 +139,7 @@ repositories {
139139
}
140140
141141
dependencies {
142-
implementation("io.github.rust-nostr:nostr:0.12.0")
142+
implementation("io.github.rust-nostr:nostr:0.12.1")
143143
}
144144
```
145145

@@ -188,7 +188,7 @@ as a package dependency in Xcode.
188188
Add the following to the dependencies array in your `Package.swift`:
189189

190190
``` swift
191-
.package(url: "https://github.com/rust-nostr/nostr-swift.git", from: "0.12.0"),
191+
.package(url: "https://github.com/rust-nostr/nostr-swift.git", from: "0.12.1"),
192192
```
193193

194194
Import the library in your code:

0 commit comments

Comments
 (0)