From 0c2597c9d2320c3e20212aaadc340fc4a3ab7a8a Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Thu, 15 Aug 2024 10:00:24 -0400 Subject: [PATCH] Bump to v0.34.0 Signed-off-by: Yuki Kishimoto --- Cargo.lock | 24 +++++++++---------- Cargo.toml | 24 +++++++++---------- .../bindings-android/lib/build.gradle.kts | 2 +- bindings/nostr-ffi/bindings-python/setup.py | 2 +- bindings/nostr-js/package.json | 2 +- .../bindings-android/lib/build.gradle.kts | 2 +- .../nostr-sdk-ffi/bindings-python/setup.py | 2 +- bindings/nostr-sdk-js/package.json | 2 +- crates/nostr-database/Cargo.toml | 2 +- crates/nostr-indexeddb/Cargo.toml | 2 +- crates/nostr-ndb/Cargo.toml | 2 +- crates/nostr-relay-pool/Cargo.toml | 2 +- crates/nostr-rocksdb/Cargo.toml | 2 +- crates/nostr-sdk/Cargo.toml | 2 +- crates/nostr-signer/Cargo.toml | 2 +- crates/nostr-sqlite/Cargo.toml | 2 +- crates/nostr-webln/Cargo.toml | 2 +- crates/nostr-zapper/Cargo.toml | 2 +- crates/nostr/Cargo.toml | 2 +- crates/nwc/Cargo.toml | 2 +- 20 files changed, 42 insertions(+), 42 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5034cd7dc..70b260cbc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2560,7 +2560,7 @@ dependencies = [ [[package]] name = "nostr" -version = "0.33.0" +version = "0.34.0" dependencies = [ "aes", "base64 0.21.7", @@ -2608,7 +2608,7 @@ dependencies = [ [[package]] name = "nostr-database" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "flatbuffers", @@ -2630,7 +2630,7 @@ dependencies = [ [[package]] name = "nostr-indexeddb" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "indexed_db_futures", @@ -2656,7 +2656,7 @@ dependencies = [ [[package]] name = "nostr-ndb" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "nostr", @@ -2680,7 +2680,7 @@ dependencies = [ [[package]] name = "nostr-relay-pool" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-utility", "async-wsocket", @@ -2696,7 +2696,7 @@ dependencies = [ [[package]] name = "nostr-rocksdb" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "nostr", @@ -2710,7 +2710,7 @@ dependencies = [ [[package]] name = "nostr-sdk" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-utility", "atomic-destructor", @@ -2761,7 +2761,7 @@ dependencies = [ [[package]] name = "nostr-signer" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-utility", "dialoguer", @@ -2775,7 +2775,7 @@ dependencies = [ [[package]] name = "nostr-sqlite" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "nostr", @@ -2789,7 +2789,7 @@ dependencies = [ [[package]] name = "nostr-webln" -version = "0.33.0" +version = "0.34.0" dependencies = [ "nostr-zapper", "webln", @@ -2797,7 +2797,7 @@ dependencies = [ [[package]] name = "nostr-zapper" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "nostr", @@ -2925,7 +2925,7 @@ dependencies = [ [[package]] name = "nwc" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-utility", "nostr", diff --git a/Cargo.toml b/Cargo.toml index 4cb93ef58..61c53f10a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,18 +25,18 @@ async-trait = "0.1" async-utility = "0.2" atomic-destructor = { version = "0.2", default-features = false } js-sys = "0.3" -nostr = { version = "0.33", path = "./crates/nostr", default-features = false } -nostr-database = { version = "0.33", path = "./crates/nostr-database", default-features = false } -nostr-indexeddb = { version = "0.33", path = "./crates/nostr-indexeddb", default-features = false } -nostr-ndb = { version = "0.33", path = "./crates/nostr-ndb", default-features = false } -nostr-relay-pool = { version = "0.33", path = "./crates/nostr-relay-pool", default-features = false } -nostr-rocksdb = { version = "0.33", path = "./crates/nostr-rocksdb", default-features = false } -nostr-sdk = { version = "0.33", path = "./crates/nostr-sdk", default-features = false } -nostr-signer = { version = "0.33", path = "./crates/nostr-signer", default-features = false } -nostr-sqlite = { version = "0.33", path = "./crates/nostr-sqlite", default-features = false } -nostr-webln = { version = "0.33", path = "./crates/nostr-webln", default-features = false } -nostr-zapper = { version = "0.33", path = "./crates/nostr-zapper", default-features = false } -nwc = { version = "0.33", path = "./crates/nwc", default-features = false } +nostr = { version = "0.34", path = "./crates/nostr", default-features = false } +nostr-database = { version = "0.34", path = "./crates/nostr-database", default-features = false } +nostr-indexeddb = { version = "0.34", path = "./crates/nostr-indexeddb", default-features = false } +nostr-ndb = { version = "0.34", path = "./crates/nostr-ndb", default-features = false } +nostr-relay-pool = { version = "0.34", path = "./crates/nostr-relay-pool", default-features = false } +nostr-rocksdb = { version = "0.34", path = "./crates/nostr-rocksdb", default-features = false } +nostr-sdk = { version = "0.34", path = "./crates/nostr-sdk", default-features = false } +nostr-signer = { version = "0.34", path = "./crates/nostr-signer", default-features = false } +nostr-sqlite = { version = "0.34", path = "./crates/nostr-sqlite", default-features = false } +nostr-webln = { version = "0.34", path = "./crates/nostr-webln", default-features = false } +nostr-zapper = { version = "0.34", path = "./crates/nostr-zapper", default-features = false } +nwc = { version = "0.34", path = "./crates/nwc", default-features = false } once_cell = { version = "1.19", default-features = false } serde_json = { version = "1.0", default-features = false } thiserror = "1.0" diff --git a/bindings/nostr-ffi/bindings-android/lib/build.gradle.kts b/bindings/nostr-ffi/bindings-android/lib/build.gradle.kts index d04dcd4ad..df79c606f 100644 --- a/bindings/nostr-ffi/bindings-android/lib/build.gradle.kts +++ b/bindings/nostr-ffi/bindings-android/lib/build.gradle.kts @@ -54,7 +54,7 @@ mavenPublishing { signAllPublications() - coordinates("org.rust-nostr", "nostr", "0.33.0") + coordinates("org.rust-nostr", "nostr", "0.34.0") pom { name.set("nostr") diff --git a/bindings/nostr-ffi/bindings-python/setup.py b/bindings/nostr-ffi/bindings-python/setup.py index 4d09d7dd8..d19e06c52 100644 --- a/bindings/nostr-ffi/bindings-python/setup.py +++ b/bindings/nostr-ffi/bindings-python/setup.py @@ -8,7 +8,7 @@ setup( name='nostr-protocol', - version='0.33.0', + version='0.34.0', description="Nostr protocol implementation", long_description=long_description, long_description_content_type='text/markdown', diff --git a/bindings/nostr-js/package.json b/bindings/nostr-js/package.json index 18f5d46aa..427427aec 100644 --- a/bindings/nostr-js/package.json +++ b/bindings/nostr-js/package.json @@ -1,6 +1,6 @@ { "name": "@rust-nostr/nostr", - "version": "0.33.0", + "version": "0.34.0", "description": "Nostr protocol implementation", "keywords": [ "nostr", diff --git a/bindings/nostr-sdk-ffi/bindings-android/lib/build.gradle.kts b/bindings/nostr-sdk-ffi/bindings-android/lib/build.gradle.kts index 69bda0df3..5818f1fb4 100644 --- a/bindings/nostr-sdk-ffi/bindings-android/lib/build.gradle.kts +++ b/bindings/nostr-sdk-ffi/bindings-android/lib/build.gradle.kts @@ -54,7 +54,7 @@ mavenPublishing { signAllPublications() - coordinates("org.rust-nostr", "nostr-sdk", "0.33.0") + coordinates("org.rust-nostr", "nostr-sdk", "0.34.0") pom { name.set("nostr-sdk") diff --git a/bindings/nostr-sdk-ffi/bindings-python/setup.py b/bindings/nostr-sdk-ffi/bindings-python/setup.py index fc9eafd35..a882ab871 100644 --- a/bindings/nostr-sdk-ffi/bindings-python/setup.py +++ b/bindings/nostr-sdk-ffi/bindings-python/setup.py @@ -8,7 +8,7 @@ setup( name='nostr-sdk', - version='0.33.0', + version='0.34.0', description="High level Nostr client library.", long_description=long_description, long_description_content_type='text/markdown', diff --git a/bindings/nostr-sdk-js/package.json b/bindings/nostr-sdk-js/package.json index 5f5dc5950..8b8042092 100644 --- a/bindings/nostr-sdk-js/package.json +++ b/bindings/nostr-sdk-js/package.json @@ -1,6 +1,6 @@ { "name": "@rust-nostr/nostr-sdk", - "version": "0.33.0", + "version": "0.34.0", "description": "High level Nostr client library.", "keywords": [ "nostr", diff --git a/crates/nostr-database/Cargo.toml b/crates/nostr-database/Cargo.toml index bc681173f..23106d91b 100644 --- a/crates/nostr-database/Cargo.toml +++ b/crates/nostr-database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-database" -version = "0.33.0" +version = "0.34.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 72c1c21c4..a23eb7d81 100644 --- a/crates/nostr-indexeddb/Cargo.toml +++ b/crates/nostr-indexeddb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-indexeddb" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "Web's IndexedDB Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-ndb/Cargo.toml b/crates/nostr-ndb/Cargo.toml index 1df00965c..3a96a1819 100644 --- a/crates/nostr-ndb/Cargo.toml +++ b/crates/nostr-ndb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-ndb" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "ndb (nostrdb) storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-relay-pool/Cargo.toml b/crates/nostr-relay-pool/Cargo.toml index eb0c17c17..31ce069e7 100644 --- a/crates/nostr-relay-pool/Cargo.toml +++ b/crates/nostr-relay-pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-relay-pool" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "Nostr Relay Pool" authors.workspace = true diff --git a/crates/nostr-rocksdb/Cargo.toml b/crates/nostr-rocksdb/Cargo.toml index 97e59a11a..05ec94dd7 100644 --- a/crates/nostr-rocksdb/Cargo.toml +++ b/crates/nostr-rocksdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-rocksdb" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "RocksDB Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-sdk/Cargo.toml b/crates/nostr-sdk/Cargo.toml index 6c6645f44..da6872093 100644 --- a/crates/nostr-sdk/Cargo.toml +++ b/crates/nostr-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sdk" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "High level Nostr client library." authors.workspace = true diff --git a/crates/nostr-signer/Cargo.toml b/crates/nostr-signer/Cargo.toml index d1b04e613..9ba1c0f85 100644 --- a/crates/nostr-signer/Cargo.toml +++ b/crates/nostr-signer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-signer" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "Signer for Nostr apps" authors.workspace = true diff --git a/crates/nostr-sqlite/Cargo.toml b/crates/nostr-sqlite/Cargo.toml index f0eab5570..81bb66f0b 100644 --- a/crates/nostr-sqlite/Cargo.toml +++ b/crates/nostr-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sqlite" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "SQLite Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-webln/Cargo.toml b/crates/nostr-webln/Cargo.toml index 7304be4c9..30161e556 100644 --- a/crates/nostr-webln/Cargo.toml +++ b/crates/nostr-webln/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-webln" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "WebLN zapper backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-zapper/Cargo.toml b/crates/nostr-zapper/Cargo.toml index 8230b88a9..11d1d745c 100644 --- a/crates/nostr-zapper/Cargo.toml +++ b/crates/nostr-zapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-zapper" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "Zapper abstraction for Nostr apps" authors.workspace = true diff --git a/crates/nostr/Cargo.toml b/crates/nostr/Cargo.toml index 34e975ed4..443205c17 100644 --- a/crates/nostr/Cargo.toml +++ b/crates/nostr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "Rust implementation of the Nostr protocol." authors.workspace = true diff --git a/crates/nwc/Cargo.toml b/crates/nwc/Cargo.toml index 08622688f..0a2cf95ee 100644 --- a/crates/nwc/Cargo.toml +++ b/crates/nwc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nwc" -version = "0.33.0" +version = "0.34.0" edition = "2021" description = "NWC client and zapper backend for Nostr apps" authors.workspace = true