Skip to content

Commit fda219a

Browse files
committed
Bump to v0.24.0
1 parent 5600d91 commit fda219a

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/nostr-sdk-net/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nostr-sdk-net"
3-
version = "0.23.1"
3+
version = "0.24.0"
44
edition = "2021"
55
description = "Nostr SDK Network library."
66
authors = ["Yuki Kishimoto <[email protected]>"]

crates/nostr-sdk/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nostr-sdk"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
edition = "2021"
55
description = "High level Nostr client library."
66
authors = ["Yuki Kishimoto <[email protected]>"]
@@ -30,8 +30,8 @@ nip47 = ["nostr/nip47"]
3030

3131
[dependencies]
3232
async-utility = "0.1"
33-
nostr = { version = "0.23", path = "../nostr", default-features = false, features = ["std"] }
34-
nostr-sdk-net = { version = "0.23", path = "../nostr-sdk-net" }
33+
nostr = { version = "0.24", path = "../nostr", default-features = false, features = ["std"] }
34+
nostr-sdk-net = { version = "0.24", path = "../nostr-sdk-net" }
3535
once_cell = { workspace = true }
3636
thiserror = { workspace = true }
3737
tracing = { workspace = true, features = ["std"] }

crates/nostr-sdk/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ other lower-level crates. If you're attempting something more custom, you might
2424

2525
```toml
2626
[dependencies]
27-
nostr-sdk = "0.23"
27+
nostr-sdk = "0.24"
2828
tokio = { version = "1", features = ["full"] }
2929
```
3030

31-
NOTE: if you are using `bitcoin` v0.29, use `nostr-sdk = "=0.23.0-bitcoin-v0.29"` insead.
32-
3331
```rust,no_run
3432
use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4};
3533

crates/nostr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nostr"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
edition = "2021"
55
description = "Rust implementation of the Nostr protocol."
66
authors = ["Yuki Kishimoto <[email protected]>"]

crates/nostr/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ If you're writing a typical Nostr client or bot, you may be interested in [nostr
1818

1919
```toml
2020
[dependencies]
21-
nostr = "0.23"
21+
nostr = "0.24"
2222
```
2323

24-
NOTE: if you are using `bitcoin` v0.29, use `nostr = "=0.23.0-bitcoin-v0.29"` insead.
25-
2624
```rust,no_run
2725
use nostr::prelude::*;
2826

0 commit comments

Comments
 (0)