diff --git a/Cargo.lock b/Cargo.lock index 10e617774..cd1eee687 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1321,7 +1321,7 @@ dependencies = [ [[package]] name = "nostr" -version = "0.26.0" +version = "0.27.0" dependencies = [ "aes", "base64", @@ -1361,7 +1361,7 @@ dependencies = [ [[package]] name = "nostr-database" -version = "0.26.0" +version = "0.27.0" dependencies = [ "async-trait", "flatbuffers", @@ -1392,7 +1392,7 @@ dependencies = [ [[package]] name = "nostr-indexeddb" -version = "0.26.0" +version = "0.27.0" dependencies = [ "async-trait", "indexed_db_futures", @@ -1431,7 +1431,7 @@ dependencies = [ [[package]] name = "nostr-sdk" -version = "0.26.0" +version = "0.27.0" dependencies = [ "async-utility", "async-wsocket", @@ -1473,7 +1473,7 @@ dependencies = [ [[package]] name = "nostr-sqlite" -version = "0.26.0" +version = "0.27.0" dependencies = [ "async-trait", "deadpool-sqlite", diff --git a/Cargo.toml b/Cargo.toml index 87ed05982..f9c719499 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,8 +19,8 @@ rust-version = "1.64.0" async-trait = "0.1" async-utility = "0.1" js-sys = "0.3" -nostr = { version = "0.26", path = "./crates/nostr", default-features = false } -nostr-database = { version = "0.26", path = "./crates/nostr-database", default-features = false } +nostr = { version = "0.27", path = "./crates/nostr", default-features = false } +nostr-database = { version = "0.27", path = "./crates/nostr-database", default-features = false } once_cell = "1.19" serde_json = { version = "1.0", default-features = false } thiserror = "1.0" diff --git a/crates/nostr-database/Cargo.toml b/crates/nostr-database/Cargo.toml index eb13d1ba4..3d3a8af4b 100644 --- a/crates/nostr-database/Cargo.toml +++ b/crates/nostr-database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-database" -version = "0.26.0" +version = "0.27.0" edition = "2021" description = "Database for Nostr apps" authors.workspace = true diff --git a/crates/nostr-indexeddb/Cargo.toml b/crates/nostr-indexeddb/Cargo.toml index b07d53fb5..0ccccd0f2 100644 --- a/crates/nostr-indexeddb/Cargo.toml +++ b/crates/nostr-indexeddb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-indexeddb" -version = "0.26.0" +version = "0.27.0" edition = "2021" description = "Web's IndexedDB Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-sdk/Cargo.toml b/crates/nostr-sdk/Cargo.toml index 7a744c764..8663c4511 100644 --- a/crates/nostr-sdk/Cargo.toml +++ b/crates/nostr-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sdk" -version = "0.26.0" +version = "0.27.0" edition = "2021" description = "High level Nostr client library." authors.workspace = true @@ -42,11 +42,11 @@ thiserror.workspace = true tracing = { workspace = true, features = ["std", "attributes"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -nostr-sqlite = { version = "0.26", path = "../nostr-sqlite", optional = true } +nostr-sqlite = { version = "0.27", path = "../nostr-sqlite", optional = true } tokio = { workspace = true, features = ["rt-multi-thread", "time", "macros", "sync"] } [target.'cfg(target_arch = "wasm32")'.dependencies] -nostr-indexeddb = { version = "0.26", path = "../nostr-indexeddb", optional = true } +nostr-indexeddb = { version = "0.27", path = "../nostr-indexeddb", optional = true } tokio = { workspace = true, features = ["rt", "macros", "sync"] } [dev-dependencies] diff --git a/crates/nostr-sdk/README.md b/crates/nostr-sdk/README.md index 7a58760f3..85f2ee844 100644 --- a/crates/nostr-sdk/README.md +++ b/crates/nostr-sdk/README.md @@ -24,7 +24,7 @@ other lower-level crates. If you're attempting something more custom, you might ```toml [dependencies] -nostr-sdk = "0.26" +nostr-sdk = "0.27" tokio = { version = "1", features = ["full"] } ``` diff --git a/crates/nostr-sqlite/Cargo.toml b/crates/nostr-sqlite/Cargo.toml index 96d554ec9..022f3ff3d 100644 --- a/crates/nostr-sqlite/Cargo.toml +++ b/crates/nostr-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sqlite" -version = "0.26.0" +version = "0.27.0" edition = "2021" description = "SQLite Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr/Cargo.toml b/crates/nostr/Cargo.toml index 722e90a3b..e46e04bb4 100644 --- a/crates/nostr/Cargo.toml +++ b/crates/nostr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr" -version = "0.26.0" +version = "0.27.0" edition = "2021" description = "Rust implementation of the Nostr protocol." authors.workspace = true diff --git a/crates/nostr/README.md b/crates/nostr/README.md index 268f74500..e371da492 100644 --- a/crates/nostr/README.md +++ b/crates/nostr/README.md @@ -19,7 +19,7 @@ You may be interested in: ```toml [dependencies] -nostr = "0.26" +nostr = "0.27" ``` ```rust,no_run