Skip to content

Commit

Permalink
Bump to v0.35.0
Browse files Browse the repository at this point in the history
Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
  • Loading branch information
yukibtc committed Sep 19, 2024
1 parent 487d797 commit 6b623ae
Show file tree
Hide file tree
Showing 22 changed files with 52 additions and 52 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ 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.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-lmdb = { version = "0.34", path = "./crates/nostr-lmdb", default-features = false }
nostr-ndb = { version = "0.34", path = "./crates/nostr-ndb", default-features = false }
nostr-relay-builder = { version = "0.34", path = "./crates/nostr-relay-builder", default-features = false }
nostr-relay-pool = { version = "0.34", path = "./crates/nostr-relay-pool", 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 }
nostr = { version = "0.35", path = "./crates/nostr", 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-signer = { version = "0.35", path = "./crates/nostr-signer", default-features = false }
nostr-sqlite = { version = "0.35", path = "./crates/nostr-sqlite", default-features = false }
nostr-webln = { version = "0.35", path = "./crates/nostr-webln", 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 }
once_cell = { version = "1.19", default-features = false }
serde_json = { version = "1.0", default-features = false }
thiserror = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions bindings/nostr-ffi/bindings-android/lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {

android {
namespace = "rust.nostr.protocol"

compileSdk = 34

defaultConfig {
Expand Down Expand Up @@ -54,7 +54,7 @@ mavenPublishing {

signAllPublications()

coordinates("org.rust-nostr", "nostr", "0.34.0")
coordinates("org.rust-nostr", "nostr", "0.35.0")

pom {
name.set("nostr")
Expand Down
2 changes: 1 addition & 1 deletion bindings/nostr-ffi/bindings-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='nostr-protocol',
version='0.34.0',
version='0.35.0',
description="Nostr protocol implementation",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
4 changes: 2 additions & 2 deletions bindings/nostr-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rust-nostr/nostr",
"version": "0.34.0",
"version": "0.35.0",
"description": "Nostr protocol implementation",
"keywords": [
"nostr",
Expand Down Expand Up @@ -48,4 +48,4 @@
"build:dev": "WASM_PACK_ARGS=--dev ./scripts/build.sh",
"package": "npm run build && npm pack"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ mavenPublishing {

signAllPublications()

coordinates("org.rust-nostr", "nostr-sdk", "0.34.0")
coordinates("org.rust-nostr", "nostr-sdk", "0.35.0")

pom {
name.set("nostr-sdk")
Expand Down
2 changes: 1 addition & 1 deletion bindings/nostr-sdk-ffi/bindings-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='nostr-sdk',
version='0.34.0',
version='0.35.0',
description="High level Nostr client library.",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion bindings/nostr-sdk-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rust-nostr/nostr-sdk",
"version": "0.34.0",
"version": "0.35.0",
"description": "High level Nostr client library.",
"keywords": [
"nostr",
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-cli"
version = "0.1.0"
version = "0.35.0"
edition = "2021"
rust-version.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-database/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-database"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "Database for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-indexeddb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-indexeddb"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "Web's IndexedDB Storage backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-lmdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-lmdb"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "LMDB storage backend for nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-ndb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-ndb"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "ndb (nostrdb) storage backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-relay-builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-relay-builder"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "Nostr Relay Builder"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-relay-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-relay-pool"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "Nostr Relay Pool"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-sdk"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "High level Nostr client library."
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-signer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-signer"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "Signer for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-sqlite"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "SQLite Storage backend for Nostr apps"
authors.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/nostr-webln/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-webln"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "WebLN zapper backend for Nostr apps"
authors.workspace = true
Expand All @@ -13,4 +13,4 @@ keywords = ["nostr", "zapper", "webln"]

[dependencies]
nostr-zapper.workspace = true
webln = "0.3"
webln = "0.3"
4 changes: 2 additions & 2 deletions crates/nostr-zapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-zapper"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "Zapper abstraction for Nostr apps"
authors.workspace = true
Expand All @@ -14,4 +14,4 @@ keywords = ["nostr", "zapper"]
[dependencies]
async-trait.workspace = true
nostr = { workspace = true, features = ["std"] }
thiserror.workspace = true
thiserror.workspace = true
2 changes: 1 addition & 1 deletion crates/nostr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr"
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "Rust implementation of the Nostr protocol."
authors.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/nwc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nwc"
version = "0.34.1"
version = "0.35.0"
edition = "2021"
description = "NWC client and zapper backend for Nostr apps"
authors.workspace = true
Expand All @@ -25,4 +25,4 @@ tracing = { workspace = true, features = ["std"] }

[dev-dependencies]
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tracing-subscriber.workspace = true
tracing-subscriber.workspace = true

0 comments on commit 6b623ae

Please sign in to comment.