Skip to content

Commit

Permalink
Bump to v0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yukibtc committed Sep 16, 2023
1 parent 5600d91 commit fda219a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 14 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/nostr-sdk-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-sdk-net"
version = "0.23.1"
version = "0.24.0"
edition = "2021"
description = "Nostr SDK Network library."
authors = ["Yuki Kishimoto <[email protected]>"]
Expand Down
6 changes: 3 additions & 3 deletions crates/nostr-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-sdk"
version = "0.23.0"
version = "0.24.0"
edition = "2021"
description = "High level Nostr client library."
authors = ["Yuki Kishimoto <[email protected]>"]
Expand Down Expand Up @@ -30,8 +30,8 @@ nip47 = ["nostr/nip47"]

[dependencies]
async-utility = "0.1"
nostr = { version = "0.23", path = "../nostr", default-features = false, features = ["std"] }
nostr-sdk-net = { version = "0.23", path = "../nostr-sdk-net" }
nostr = { version = "0.24", path = "../nostr", default-features = false, features = ["std"] }
nostr-sdk-net = { version = "0.24", path = "../nostr-sdk-net" }
once_cell = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true, features = ["std"] }
Expand Down
4 changes: 1 addition & 3 deletions crates/nostr-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ other lower-level crates. If you're attempting something more custom, you might

```toml
[dependencies]
nostr-sdk = "0.23"
nostr-sdk = "0.24"
tokio = { version = "1", features = ["full"] }
```

NOTE: if you are using `bitcoin` v0.29, use `nostr-sdk = "=0.23.0-bitcoin-v0.29"` insead.

```rust,no_run
use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4};
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr"
version = "0.23.0"
version = "0.24.0"
edition = "2021"
description = "Rust implementation of the Nostr protocol."
authors = ["Yuki Kishimoto <[email protected]>"]
Expand Down
4 changes: 1 addition & 3 deletions crates/nostr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ If you're writing a typical Nostr client or bot, you may be interested in [nostr

```toml
[dependencies]
nostr = "0.23"
nostr = "0.24"
```

NOTE: if you are using `bitcoin` v0.29, use `nostr = "=0.23.0-bitcoin-v0.29"` insead.

```rust,no_run
use nostr::prelude::*;
Expand Down

0 comments on commit fda219a

Please sign in to comment.