From 06c10b11edeaa0506232c743756c3af14f34c0ca Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Wed, 27 Nov 2024 13:50:28 +0100 Subject: [PATCH] Bump to v0.37.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 735dbe356..c791888db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3116,7 +3116,7 @@ dependencies = [ [[package]] name = "nostr" -version = "0.36.0" +version = "0.37.0" dependencies = [ "aes", "async-trait", @@ -3150,7 +3150,7 @@ dependencies = [ [[package]] name = "nostr-cli" -version = "0.36.0" +version = "0.37.0" dependencies = [ "clap", "dialoguer", @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "nostr-connect" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-trait", "async-utility", @@ -3184,7 +3184,7 @@ dependencies = [ [[package]] name = "nostr-database" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-trait", "flatbuffers", @@ -3197,7 +3197,7 @@ dependencies = [ [[package]] name = "nostr-indexeddb" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-trait", "indexed_db_futures", @@ -3211,7 +3211,7 @@ dependencies = [ [[package]] name = "nostr-lmdb" -version = "0.36.0" +version = "0.37.0" dependencies = [ "heed", "nostr", @@ -3224,7 +3224,7 @@ dependencies = [ [[package]] name = "nostr-ndb" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-trait", "nostr", @@ -3248,7 +3248,7 @@ dependencies = [ [[package]] name = "nostr-relay-builder" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-utility", "async-wsocket", @@ -3263,7 +3263,7 @@ dependencies = [ [[package]] name = "nostr-relay-pool" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-utility", "async-wsocket", @@ -3282,7 +3282,7 @@ dependencies = [ [[package]] name = "nostr-sdk" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-utility", "atomic-destructor", @@ -3343,7 +3343,7 @@ dependencies = [ [[package]] name = "nostr-zapper" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-trait", "nostr", @@ -3508,7 +3508,7 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "nwc" -version = "0.36.0" +version = "0.37.0" dependencies = [ "async-trait", "async-utility", diff --git a/Cargo.toml b/Cargo.toml index 850b640c5..eac58d8d8 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.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 } +nostr = { version = "0.37", path = "./crates/nostr", default-features = false } +nostr-connect = { version = "0.37", path = "./crates/nostr-connect", default-features = false } +nostr-database = { version = "0.37", path = "./crates/nostr-database", default-features = false } +nostr-indexeddb = { version = "0.37", path = "./crates/nostr-indexeddb", default-features = false } +nostr-lmdb = { version = "0.37", path = "./crates/nostr-lmdb", default-features = false } +nostr-ndb = { version = "0.37", path = "./crates/nostr-ndb", default-features = false } +nostr-relay-builder = { version = "0.37", path = "./crates/nostr-relay-builder", default-features = false } +nostr-relay-pool = { version = "0.37", path = "./crates/nostr-relay-pool", default-features = false } +nostr-sdk = { version = "0.37", path = "./crates/nostr-sdk", default-features = false } +nostr-zapper = { version = "0.37", path = "./crates/nostr-zapper", default-features = false } +nwc = { version = "0.37", 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 32b18b91e..4b062dafd 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.36.0") + coordinates("org.rust-nostr", "nostr-sdk", "0.37.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 8c9c633b0..c2c05891e 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.36.0', + version='0.37.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 2ed8654fc..c190fba9d 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.36.0 +version: 0.37.0 homepage: environment: diff --git a/bindings/nostr-sdk-js/package.json b/bindings/nostr-sdk-js/package.json index 0598ed3f3..66160a897 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.36.0", + "version": "0.37.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 ccccbc414..2c174c3fe 100644 --- a/crates/nostr-cli/Cargo.toml +++ b/crates/nostr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-cli" -version = "0.36.0" +version = "0.37.0" edition = "2021" description = "Nostr CLI" authors.workspace = true diff --git a/crates/nostr-connect/Cargo.toml b/crates/nostr-connect/Cargo.toml index 72edb8f60..7f52df241 100644 --- a/crates/nostr-connect/Cargo.toml +++ b/crates/nostr-connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-connect" -version = "0.36.0" +version = "0.37.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 e61583583..0f630ff8e 100644 --- a/crates/nostr-database/Cargo.toml +++ b/crates/nostr-database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-database" -version = "0.36.0" +version = "0.37.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 6e3b0f4a3..d5abd5c9d 100644 --- a/crates/nostr-indexeddb/Cargo.toml +++ b/crates/nostr-indexeddb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-indexeddb" -version = "0.36.0" +version = "0.37.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 a6ddce5f7..d20a52355 100644 --- a/crates/nostr-lmdb/Cargo.toml +++ b/crates/nostr-lmdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-lmdb" -version = "0.36.0" +version = "0.37.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 34af6a7d9..e48d322be 100644 --- a/crates/nostr-ndb/Cargo.toml +++ b/crates/nostr-ndb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-ndb" -version = "0.36.0" +version = "0.37.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 e6a989998..11de0e527 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.36.0" +version = "0.37.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 cf2451b61..69d51bf3b 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.36.0" +version = "0.37.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 f5a2609e5..149a66358 100644 --- a/crates/nostr-sdk/Cargo.toml +++ b/crates/nostr-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-sdk" -version = "0.36.0" +version = "0.37.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 0d0003b90..822bf14d0 100644 --- a/crates/nostr-zapper/Cargo.toml +++ b/crates/nostr-zapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-zapper" -version = "0.36.0" +version = "0.37.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 e36b8c359..b625f5db2 100644 --- a/crates/nostr/Cargo.toml +++ b/crates/nostr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr" -version = "0.36.0" +version = "0.37.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 d11b1f7b6..acc4ac8df 100644 --- a/crates/nwc/Cargo.toml +++ b/crates/nwc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nwc" -version = "0.36.0" +version = "0.37.0" edition = "2021" description = "NWC client and zapper backend for Nostr apps" authors.workspace = true