Skip to content

Commit 8eac487

Browse files
committed
Release v0.43.0
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent 93f0bfe commit 8eac487

File tree

42 files changed

+89
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+89
-69
lines changed

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ base64 = { version = "0.22", default-features = false }
4141
clap = "=4.4.18"
4242
lru = { version = "0.16", default-features = false }
4343
negentropy = { version = "0.5", default-features = false }
44-
nostr = { version = "0.42", path = "./crates/nostr", default-features = false }
45-
nostr-connect = { version = "0.42", path = "./signer/nostr-connect", default-features = false }
46-
nostr-database = { version = "0.42", path = "./database/nostr-database", default-features = false }
47-
nostr-indexeddb = { version = "0.42", path = "./database/nostr-indexeddb", default-features = false }
48-
nostr-lmdb = { version = "0.42", path = "./database/nostr-lmdb", default-features = false }
49-
nostr-mls-memory-storage = { version = "0.42", path = "./mls/nostr-mls-memory-storage", default-features = false }
50-
nostr-mls-sqlite-storage = { version = "0.42", path = "./mls/nostr-mls-sqlite-storage", default-features = false }
51-
nostr-mls-storage = { version = "0.42", path = "./mls/nostr-mls-storage", default-features = false }
52-
nostr-mls = { version = "0.42", path = "./mls/nostr-mls", default-features = false }
53-
nostr-ndb = { version = "0.42", path = "./database/nostr-ndb", default-features = false }
54-
nostr-relay-builder = { version = "0.42", path = "./crates/nostr-relay-builder", default-features = false }
55-
nostr-relay-pool = { version = "0.42", path = "./crates/nostr-relay-pool", default-features = false }
56-
nostr-sdk = { version = "0.42", path = "./crates/nostr-sdk", default-features = false }
44+
nostr = { version = "0.43", path = "./crates/nostr", default-features = false }
45+
nostr-connect = { version = "0.43", path = "./signer/nostr-connect", default-features = false }
46+
nostr-database = { version = "0.43", path = "./database/nostr-database", default-features = false }
47+
nostr-indexeddb = { version = "0.43", path = "./database/nostr-indexeddb", default-features = false }
48+
nostr-lmdb = { version = "0.43", path = "./database/nostr-lmdb", default-features = false }
49+
nostr-mls-memory-storage = { version = "0.43", path = "./mls/nostr-mls-memory-storage", default-features = false }
50+
nostr-mls-sqlite-storage = { version = "0.43", path = "./mls/nostr-mls-sqlite-storage", default-features = false }
51+
nostr-mls-storage = { version = "0.43", path = "./mls/nostr-mls-storage", default-features = false }
52+
nostr-mls = { version = "0.43", path = "./mls/nostr-mls", default-features = false }
53+
nostr-ndb = { version = "0.43", path = "./database/nostr-ndb", default-features = false }
54+
nostr-relay-builder = { version = "0.43", path = "./crates/nostr-relay-builder", default-features = false }
55+
nostr-relay-pool = { version = "0.43", path = "./crates/nostr-relay-pool", default-features = false }
56+
nostr-sdk = { version = "0.43", path = "./crates/nostr-sdk", default-features = false }
5757
reqwest = { version = "0.12", default-features = false }
5858
serde = { version = "1.0", default-features = false }
5959
serde_json = { version = "1.0", default-features = false }

contrib/release/RELEASE_STEPS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release steps
22

3-
- Bump versions in various `Cargo.toml`
3+
- Bump versions in various `Cargo.toml` with `cargo release version --workspace --execute <version>`
44
- Update CHANGELOGs
5-
- Commit and push: `Bump to vX.X.X`
5+
- Commit and push: `Release vX.X.X`
66
- Run `just release` to build and publish all the crates

crates/nostr-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nostr-cli"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2021"
55
description = "Nostr CLI"
66
authors.workspace = true

crates/nostr-keyring/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
-->
2525

26-
## Unreleased
26+
## v0.43.0 - 2025/07/28
2727

2828
### Changed
2929

crates/nostr-keyring/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nostr-keyring"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2021"
55
description = "Keyring for nostr"
66
authors.workspace = true

crates/nostr-relay-builder/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
2424
-->
2525

26+
## v0.43.0 - 2025/07/28
27+
28+
No notable changes in this release.
29+
2630
## v0.42.0 - 2025/05/20
2731

2832
### Added

crates/nostr-relay-builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nostr-relay-builder"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2021"
55
description = "Build your own custom nostr relay!"
66
authors.workspace = true

crates/nostr-relay-pool/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
-->
2525

26-
## Unreleased
26+
## v0.43.0 - 2025/07/28
2727

2828
### Breaking changes
2929

crates/nostr-relay-pool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nostr-relay-pool"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2021"
55
description = "Nostr Relay Pool"
66
authors.workspace = true

0 commit comments

Comments
 (0)