@@ -9,14 +9,14 @@ Add the `nostr` dependency in your `Cargo.toml` file:
9
9
10
10
``` toml,ignore
11
11
[dependencies]
12
- nostr = "0.30 "
12
+ nostr = "0.31 "
13
13
```
14
14
15
15
Alternatively, you can add it directly from ` git ` source:
16
16
17
17
``` toml,ignore
18
18
[dependencies]
19
- nostr = { git = "https://github.com/rust-nostr/nostr", tag = "v0.30 .0" }
19
+ nostr = { git = "https://github.com/rust-nostr/nostr", tag = "v0.31 .0" }
20
20
```
21
21
22
22
``` admonish info
@@ -43,7 +43,7 @@ pip install nostr-protocol
43
43
Alternatively, you can manually add the dependency in your ` requrements.txt ` , ` setup.py ` , etc.:
44
44
45
45
```
46
- nostr-protocol==0.11 .0
46
+ nostr-protocol==0.12 .0
47
47
```
48
48
49
49
Import the library in your code:
@@ -87,7 +87,7 @@ Alternatively, you can manually add the dependency in your `package.json` file:
87
87
``` json
88
88
{
89
89
"dependencies" : {
90
- "@rust-nostr/nostr" : " 0.13 .0"
90
+ "@rust-nostr/nostr" : " 0.14 .0"
91
91
}
92
92
}
93
93
```
@@ -139,7 +139,7 @@ repositories {
139
139
}
140
140
141
141
dependencies {
142
- implementation("io.github.rust-nostr:nostr:0.11 .0")
142
+ implementation("io.github.rust-nostr:nostr:0.12 .0")
143
143
}
144
144
```
145
145
@@ -188,7 +188,7 @@ as a package dependency in Xcode.
188
188
Add the following to the dependencies array in your ` Package.swift ` :
189
189
190
190
``` swift
191
- .package (url : " https://github.com/rust-nostr/nostr-swift.git" , from : " 0.11.1 " ),
191
+ .package (url : " https://github.com/rust-nostr/nostr-swift.git" , from : " 0.12.0 " ),
192
192
```
193
193
194
194
Import the library in your code:
0 commit comments