Skip to content

Commit

Permalink
book: bump bindings versions
Browse files Browse the repository at this point in the history
Signed-off-by: Yuki Kishimoto <[email protected]>
  • Loading branch information
yukibtc committed May 22, 2024
1 parent a1f69a2 commit 17223a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 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.12.0
nostr-sdk==0.12.1
```

Import the library in your code:
Expand Down Expand Up @@ -88,7 +88,7 @@ Alternatively, you can manually add the dependency in your `package.json` file:
```json
{
"dependencies": {
"@rust-nostr/nostr-sdk": "0.14.0"
"@rust-nostr/nostr-sdk": "0.14.1"
}
}
```
Expand Down Expand Up @@ -140,7 +140,7 @@ repositories {
}

dependencies {
implementation("io.github.rust-nostr:nostr-sdk:0.12.0")
implementation("io.github.rust-nostr:nostr-sdk:0.12.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.12.0"),
.package(url: "https://github.com/rust-nostr/nostr-sdk-swift.git", from: "0.12.1"),
```

</section>
Expand Down
8 changes: 4 additions & 4 deletions book/src/nostr/02-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pip install nostr-protocol
Alternatively, you can manually add the dependency in your `requrements.txt`, `setup.py`, etc.:

```
nostr-protocol==0.12.0
nostr-protocol==0.12.1
```

Import the library in your code:
Expand Down Expand Up @@ -87,7 +87,7 @@ Alternatively, you can manually add the dependency in your `package.json` file:
```json
{
"dependencies": {
"@rust-nostr/nostr": "0.14.0"
"@rust-nostr/nostr": "0.14.1"
}
}
```
Expand Down Expand Up @@ -139,7 +139,7 @@ repositories {
}
dependencies {
implementation("io.github.rust-nostr:nostr:0.12.0")
implementation("io.github.rust-nostr:nostr:0.12.1")
}
```

Expand Down Expand Up @@ -188,7 +188,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-swift.git", from: "0.12.0"),
.package(url: "https://github.com/rust-nostr/nostr-swift.git", from: "0.12.1"),
```

Import the library in your code:
Expand Down

0 comments on commit 17223a1

Please sign in to comment.