diff --git a/Cargo.lock b/Cargo.lock index f361e43c4..2a08e0664 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1441,7 +1441,7 @@ dependencies = [ [[package]] name = "nostr" -version = "0.25.0" +version = "0.26.0" dependencies = [ "aes", "base64", @@ -1466,7 +1466,7 @@ dependencies = [ [[package]] name = "nostr-database" -version = "0.1.0" +version = "0.26.0" dependencies = [ "async-trait", "flatbuffers", @@ -1498,7 +1498,7 @@ dependencies = [ [[package]] name = "nostr-indexeddb" -version = "0.1.0" +version = "0.26.0" dependencies = [ "async-trait", "indexed_db_futures", @@ -1537,7 +1537,7 @@ dependencies = [ [[package]] name = "nostr-rocksdb" -version = "0.1.0" +version = "0.26.0" dependencies = [ "async-trait", "nostr", @@ -1551,7 +1551,7 @@ dependencies = [ [[package]] name = "nostr-sdk" -version = "0.25.0" +version = "0.26.0" dependencies = [ "async-utility", "nostr", @@ -1592,7 +1592,7 @@ dependencies = [ [[package]] name = "nostr-sdk-net" -version = "0.25.0" +version = "0.26.0" dependencies = [ "futures-util", "thiserror", @@ -1607,7 +1607,7 @@ dependencies = [ [[package]] name = "nostr-sqlite" -version = "0.1.0" +version = "0.26.0" dependencies = [ "async-trait", "deadpool-sqlite", diff --git a/Cargo.toml b/Cargo.toml index b73ed8af8..4ae6e16f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,8 +20,8 @@ license = "MIT" [workspace.dependencies] async-trait = "0.1" js-sys = "0.3" -nostr = { version = "0.25", path = "./crates/nostr", default-features = false } -nostr-database = { version = "0.1", path = "./crates/nostr-database", default-features = false } +nostr = { version = "0.26", path = "./crates/nostr", default-features = false } +nostr-database = { version = "0.26", path = "./crates/nostr-database", default-features = false } once_cell = "1.18" thiserror = "1.0" tokio = { version = "1", default-features = false } diff --git a/book/src/protocol/02-installation.md b/book/src/protocol/02-installation.md index 3267a6551..3e9f78065 100644 --- a/book/src/protocol/02-installation.md +++ b/book/src/protocol/02-installation.md @@ -6,14 +6,14 @@ ```toml [dependencies] - nostr = "0.25" + nostr = "0.26" ``` Alternatively, you can add it directly from `git` source: ```toml [dependencies] - nostr = { git = "https://github.com/rust-nostr/nostr", tag = "v0.25.0" } + nostr = { git = "https://github.com/rust-nostr/nostr", tag = "v0.26.0" } ``` !!! note diff --git a/book/src/sdk/02-installation.md b/book/src/sdk/02-installation.md index 98a555270..c9627757c 100644 --- a/book/src/sdk/02-installation.md +++ b/book/src/sdk/02-installation.md @@ -6,14 +6,14 @@ ```toml [dependencies] - nostr-sdk = "0.25" + nostr-sdk = "0.26" ``` Alternatively, you can add it directly from `git` source: ```toml [dependencies] - nostr-sdk = { git = "https://github.com/rust-nostr/nostr", tag = "v0.25.0" } + nostr-sdk = { git = "https://github.com/rust-nostr/nostr", tag = "v0.26.0" } ``` !!! note diff --git a/crates/nostr-database/Cargo.toml b/crates/nostr-database/Cargo.toml index d89e68e04..50d068d3a 100644 --- a/crates/nostr-database/Cargo.toml +++ b/crates/nostr-database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-database" -version = "0.1.0" +version = "0.26.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 50325a4f3..342e6699f 100644 --- a/crates/nostr-indexeddb/Cargo.toml +++ b/crates/nostr-indexeddb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-indexeddb" -version = "0.1.0" +version = "0.26.0" edition = "2021" description = "Web's IndexedDB Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-rocksdb/Cargo.toml b/crates/nostr-rocksdb/Cargo.toml index 04c07c197..27b8f670a 100644 --- a/crates/nostr-rocksdb/Cargo.toml +++ b/crates/nostr-rocksdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-rocksdb" -version = "0.1.0" +version = "0.26.0" edition = "2021" description = "RocksDB Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-sdk-net/Cargo.toml b/crates/nostr-sdk-net/Cargo.toml index a59cc5c46..9896089ef 100644 --- a/crates/nostr-sdk-net/Cargo.toml +++ b/crates/nostr-sdk-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sdk-net" -version = "0.25.0" +version = "0.26.0" edition = "2021" description = "Nostr SDK Network library." authors.workspace = true diff --git a/crates/nostr-sdk/Cargo.toml b/crates/nostr-sdk/Cargo.toml index c4da9ae06..66748416d 100644 --- a/crates/nostr-sdk/Cargo.toml +++ b/crates/nostr-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sdk" -version = "0.25.0" +version = "0.26.0" edition = "2021" description = "High level Nostr client library." authors.workspace = true @@ -35,18 +35,18 @@ nip47 = ["nostr/nip47"] async-utility = "0.1" nostr = { workspace = true, features = ["std"] } nostr-database.workspace = true -nostr-sdk-net = { version = "0.25", path = "../nostr-sdk-net" } +nostr-sdk-net = { version = "0.26", path = "../nostr-sdk-net" } once_cell.workspace = true thiserror.workspace = true tracing = { workspace = true, features = ["std", "attributes"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -nostr-rocksdb = { version = "0.1", path = "../nostr-rocksdb", optional = true } -nostr-sqlite = { version = "0.1", path = "../nostr-sqlite", optional = true } +nostr-rocksdb = { version = "0.26", path = "../nostr-rocksdb", optional = true } +nostr-sqlite = { version = "0.26", 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.1", path = "../nostr-indexeddb", optional = true } +nostr-indexeddb = { version = "0.26", path = "../nostr-indexeddb", optional = true } tokio = { workspace = true, features = ["rt", "macros", "sync"] } [dev-dependencies] diff --git a/crates/nostr-sqlite/Cargo.toml b/crates/nostr-sqlite/Cargo.toml index 39212763a..3f62a4036 100644 --- a/crates/nostr-sqlite/Cargo.toml +++ b/crates/nostr-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sqlite" -version = "0.1.0" +version = "0.26.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 da4a874a9..15964f3ef 100644 --- a/crates/nostr/Cargo.toml +++ b/crates/nostr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr" -version = "0.25.0" +version = "0.26.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 88b6b3fd9..bc87ba2d2 100644 --- a/crates/nostr/README.md +++ b/crates/nostr/README.md @@ -20,7 +20,7 @@ You may be interested in: ```toml [dependencies] -nostr = "0.25" +nostr = "0.26" ``` ```rust,no_run