From 18c4d5758b6d19623e48df3659d803b9af8aae91 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Sun, 15 Jan 2023 12:27:30 +0100 Subject: [PATCH] sdk: bump to v0.14.0 --- crates/nostr-sdk/Cargo.toml | 4 ++-- crates/nostr-sdk/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/nostr-sdk/Cargo.toml b/crates/nostr-sdk/Cargo.toml index 87b00e95c..d927200b9 100644 --- a/crates/nostr-sdk/Cargo.toml +++ b/crates/nostr-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sdk" -version = "0.13.0" +version = "0.14.0" edition = "2021" description = "High level Nostr client library." authors = ["Yuki Kishimoto "] @@ -26,7 +26,7 @@ nip26 = ["nostr/nip26"] [dependencies] futures-util = "0.3" log = "0.4" -nostr = { version = "0.13", path = "../nostr" } +nostr = { version = "0.14", path = "../nostr" } once_cell = "1" thiserror = "1.0" tokio = { version = "1", features = ["full"] } diff --git a/crates/nostr-sdk/README.md b/crates/nostr-sdk/README.md index dc4128d9c..b935e7db9 100644 --- a/crates/nostr-sdk/README.md +++ b/crates/nostr-sdk/README.md @@ -21,7 +21,7 @@ other lower-level crates. If you're attempting something more custom, you might ```toml [dependencies] -nostr-sdk = "0.13" +nostr-sdk = "0.14" tokio = { version = "1", features = ["full"] } ```