From 008c68b0df5a840828a185d8d5c2c8d4de10bed6 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Tue, 5 Nov 2024 15:43:09 +0100 Subject: [PATCH] Bump to v0.36.0 Signed-off-by: Yuki Kishimoto --- Cargo.lock | 24 +++++++++---------- Cargo.toml | 22 ++++++++--------- .../android/lib/build.gradle.kts | 2 +- bindings/nostr-sdk-ffi/python/setup.py | 2 +- bindings/nostr-sdk-flutter/pubspec.yaml | 2 +- bindings/nostr-sdk-js/package.json | 2 +- crates/nostr-cli/Cargo.toml | 2 +- crates/nostr-connect/Cargo.toml | 2 +- crates/nostr-database/Cargo.toml | 2 +- crates/nostr-indexeddb/Cargo.toml | 2 +- crates/nostr-lmdb/Cargo.toml | 2 +- crates/nostr-ndb/Cargo.toml | 2 +- crates/nostr-relay-builder/Cargo.toml | 2 +- crates/nostr-relay-pool/Cargo.toml | 2 +- crates/nostr-sdk/Cargo.toml | 2 +- crates/nostr-zapper/Cargo.toml | 2 +- crates/nostr/Cargo.toml | 2 +- crates/nwc/Cargo.toml | 2 +- 18 files changed, 39 insertions(+), 39 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 56b8daaaf..f3260bf1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3096,7 +3096,7 @@ dependencies = [ [[package]] name = "nostr" -version = "0.35.0" +version = "0.36.0" dependencies = [ "aes", "async-trait", @@ -3130,7 +3130,7 @@ dependencies = [ [[package]] name = "nostr-cli" -version = "0.35.0" +version = "0.36.0" dependencies = [ "clap", "console", @@ -3150,7 +3150,7 @@ dependencies = [ [[package]] name = "nostr-connect" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-trait", "async-utility", @@ -3165,7 +3165,7 @@ dependencies = [ [[package]] name = "nostr-database" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-trait", "flatbuffers", @@ -3179,7 +3179,7 @@ dependencies = [ [[package]] name = "nostr-indexeddb" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-trait", "indexed_db_futures", @@ -3194,7 +3194,7 @@ dependencies = [ [[package]] name = "nostr-lmdb" -version = "0.35.0" +version = "0.36.0" dependencies = [ "heed", "nostr", @@ -3207,7 +3207,7 @@ dependencies = [ [[package]] name = "nostr-ndb" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-trait", "nostr", @@ -3231,7 +3231,7 @@ dependencies = [ [[package]] name = "nostr-relay-builder" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-utility", "async-wsocket", @@ -3246,7 +3246,7 @@ dependencies = [ [[package]] name = "nostr-relay-pool" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-utility", "async-wsocket", @@ -3265,7 +3265,7 @@ dependencies = [ [[package]] name = "nostr-sdk" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-utility", "atomic-destructor", @@ -3327,7 +3327,7 @@ dependencies = [ [[package]] name = "nostr-zapper" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-trait", "nostr", @@ -3492,7 +3492,7 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "nwc" -version = "0.35.0" +version = "0.36.0" dependencies = [ "async-trait", "async-utility", diff --git a/Cargo.toml b/Cargo.toml index 63a2a2952..a0a079475 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,17 +27,17 @@ atomic-destructor = { version = "0.2", default-features = false } js-sys = "0.3" negentropy = { version = "0.4", default-features = false } negentropy-deprecated = { package = "negentropy", version = "0.3", default-features = false } -nostr = { version = "0.35", path = "./crates/nostr", default-features = false } -nostr-connect = { version = "0.35", path = "./crates/nostr-connect", default-features = false } -nostr-database = { version = "0.35", path = "./crates/nostr-database", default-features = false } -nostr-indexeddb = { version = "0.35", path = "./crates/nostr-indexeddb", default-features = false } -nostr-lmdb = { version = "0.35", path = "./crates/nostr-lmdb", default-features = false } -nostr-ndb = { version = "0.35", path = "./crates/nostr-ndb", default-features = false } -nostr-relay-builder = { version = "0.35", path = "./crates/nostr-relay-builder", default-features = false } -nostr-relay-pool = { version = "0.35", path = "./crates/nostr-relay-pool", default-features = false } -nostr-sdk = { version = "0.35", path = "./crates/nostr-sdk", default-features = false } -nostr-zapper = { version = "0.35", path = "./crates/nostr-zapper", default-features = false } -nwc = { version = "0.35", path = "./crates/nwc", default-features = false } +nostr = { version = "0.36", path = "./crates/nostr", default-features = false } +nostr-connect = { version = "0.36", path = "./crates/nostr-connect", default-features = false } +nostr-database = { version = "0.36", path = "./crates/nostr-database", default-features = false } +nostr-indexeddb = { version = "0.36", path = "./crates/nostr-indexeddb", default-features = false } +nostr-lmdb = { version = "0.36", path = "./crates/nostr-lmdb", default-features = false } +nostr-ndb = { version = "0.36", path = "./crates/nostr-ndb", default-features = false } +nostr-relay-builder = { version = "0.36", path = "./crates/nostr-relay-builder", default-features = false } +nostr-relay-pool = { version = "0.36", path = "./crates/nostr-relay-pool", default-features = false } +nostr-sdk = { version = "0.36", path = "./crates/nostr-sdk", default-features = false } +nostr-zapper = { version = "0.36", path = "./crates/nostr-zapper", default-features = false } +nwc = { version = "0.36", path = "./crates/nwc", default-features = false } once_cell = { version = "1.20", default-features = false } serde_json = { version = "1.0", default-features = false } thiserror = "1.0" diff --git a/bindings/nostr-sdk-ffi/android/lib/build.gradle.kts b/bindings/nostr-sdk-ffi/android/lib/build.gradle.kts index bdbc6843d..7159dc6bf 100644 --- a/bindings/nostr-sdk-ffi/android/lib/build.gradle.kts +++ b/bindings/nostr-sdk-ffi/android/lib/build.gradle.kts @@ -54,7 +54,7 @@ mavenPublishing { signAllPublications() - coordinates("org.rust-nostr", "nostr-sdk", "0.35.0") + coordinates("org.rust-nostr", "nostr-sdk", "0.36.0") pom { name.set("nostr-sdk") diff --git a/bindings/nostr-sdk-ffi/python/setup.py b/bindings/nostr-sdk-ffi/python/setup.py index aeeb3dc87..8c9c633b0 100644 --- a/bindings/nostr-sdk-ffi/python/setup.py +++ b/bindings/nostr-sdk-ffi/python/setup.py @@ -8,7 +8,7 @@ setup( name='nostr-sdk', - version='0.35.0', + version='0.36.0', description="Nostr protocol implementation, Relay, RelayPool, high-level client library, NWC client and more.", long_description=long_description, long_description_content_type='text/markdown', diff --git a/bindings/nostr-sdk-flutter/pubspec.yaml b/bindings/nostr-sdk-flutter/pubspec.yaml index 0615d02a1..2ed8654fc 100644 --- a/bindings/nostr-sdk-flutter/pubspec.yaml +++ b/bindings/nostr-sdk-flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: nostr_sdk description: "Nostr protocol implementation, Relay, RelayPool, high-level client library, NWC client and more." -version: 0.0.1 +version: 0.36.0 homepage: environment: diff --git a/bindings/nostr-sdk-js/package.json b/bindings/nostr-sdk-js/package.json index c36ddcf33..0598ed3f3 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.35.0", + "version": "0.36.0", "description": "Nostr protocol implementation, Relay, RelayPool, high-level client library, NWC client and more.", "keywords": [ "nostr", diff --git a/crates/nostr-cli/Cargo.toml b/crates/nostr-cli/Cargo.toml index d1ec921c0..e7d1cbf52 100644 --- a/crates/nostr-cli/Cargo.toml +++ b/crates/nostr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-cli" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "Nostr CLI" authors.workspace = true diff --git a/crates/nostr-connect/Cargo.toml b/crates/nostr-connect/Cargo.toml index 61876e61e..e4791945a 100644 --- a/crates/nostr-connect/Cargo.toml +++ b/crates/nostr-connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-connect" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "Nostr Connect (NIP46)" authors.workspace = true diff --git a/crates/nostr-database/Cargo.toml b/crates/nostr-database/Cargo.toml index df85db7dc..27582ab87 100644 --- a/crates/nostr-database/Cargo.toml +++ b/crates/nostr-database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-database" -version = "0.35.0" +version = "0.36.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 715b0bbd2..3d0c74d17 100644 --- a/crates/nostr-indexeddb/Cargo.toml +++ b/crates/nostr-indexeddb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-indexeddb" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "Web's IndexedDB Storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-lmdb/Cargo.toml b/crates/nostr-lmdb/Cargo.toml index a1f3d05b0..a6ddce5f7 100644 --- a/crates/nostr-lmdb/Cargo.toml +++ b/crates/nostr-lmdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-lmdb" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "LMDB storage backend for nostr apps" authors.workspace = true diff --git a/crates/nostr-ndb/Cargo.toml b/crates/nostr-ndb/Cargo.toml index a772f7b5b..34af6a7d9 100644 --- a/crates/nostr-ndb/Cargo.toml +++ b/crates/nostr-ndb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-ndb" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "ndb (nostrdb) storage backend for Nostr apps" authors.workspace = true diff --git a/crates/nostr-relay-builder/Cargo.toml b/crates/nostr-relay-builder/Cargo.toml index 276f0afb1..e6a989998 100644 --- a/crates/nostr-relay-builder/Cargo.toml +++ b/crates/nostr-relay-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-relay-builder" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "Nostr Relay Builder" authors.workspace = true diff --git a/crates/nostr-relay-pool/Cargo.toml b/crates/nostr-relay-pool/Cargo.toml index 2dfbf6949..cf2451b61 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.35.0" +version = "0.36.0" edition = "2021" description = "Nostr Relay Pool" authors.workspace = true diff --git a/crates/nostr-sdk/Cargo.toml b/crates/nostr-sdk/Cargo.toml index 4fbd7a6e7..c0d675649 100644 --- a/crates/nostr-sdk/Cargo.toml +++ b/crates/nostr-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sdk" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "High level Nostr client library." authors.workspace = true diff --git a/crates/nostr-zapper/Cargo.toml b/crates/nostr-zapper/Cargo.toml index 6c0527d02..0d0003b90 100644 --- a/crates/nostr-zapper/Cargo.toml +++ b/crates/nostr-zapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-zapper" -version = "0.35.0" +version = "0.36.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 ff789c896..237dc37bb 100644 --- a/crates/nostr/Cargo.toml +++ b/crates/nostr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr" -version = "0.35.0" +version = "0.36.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 6392242c8..d1d4da7a7 100644 --- a/crates/nwc/Cargo.toml +++ b/crates/nwc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nwc" -version = "0.35.0" +version = "0.36.0" edition = "2021" description = "NWC client and zapper backend for Nostr apps" authors.workspace = true