Skip to content

Commit

Permalink
Bump to v0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yukibtc committed Dec 21, 2023
1 parent 970a43d commit 0b6847e
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ license = "MIT"
[workspace.dependencies]
async-trait = "0.1"
js-sys = "0.3"
nostr = { version = "0.25", path = "./crates/nostr", default-features = false }
nostr-database = { version = "0.1", path = "./crates/nostr-database", default-features = false }
nostr = { version = "0.26", path = "./crates/nostr", default-features = false }
nostr-database = { version = "0.26", path = "./crates/nostr-database", default-features = false }
once_cell = "1.18"
thiserror = "1.0"
tokio = { version = "1", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions book/src/protocol/02-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

```toml
[dependencies]
nostr = "0.25"
nostr = "0.26"
```

Alternatively, you can add it directly from `git` source:

```toml
[dependencies]
nostr = { git = "https://github.com/rust-nostr/nostr", tag = "v0.25.0" }
nostr = { git = "https://github.com/rust-nostr/nostr", tag = "v0.26.0" }
```

!!! note
Expand Down
4 changes: 2 additions & 2 deletions book/src/sdk/02-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

```toml
[dependencies]
nostr-sdk = "0.25"
nostr-sdk = "0.26"
```

Alternatively, you can add it directly from `git` source:

```toml
[dependencies]
nostr-sdk = { git = "https://github.com/rust-nostr/nostr", tag = "v0.25.0" }
nostr-sdk = { git = "https://github.com/rust-nostr/nostr", tag = "v0.26.0" }
```

!!! note
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.1.0"
version = "0.26.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.1.0"
version = "0.26.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-rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-rocksdb"
version = "0.1.0"
version = "0.26.0"
edition = "2021"
description = "RocksDB Storage backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-sdk-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-sdk-net"
version = "0.25.0"
version = "0.26.0"
edition = "2021"
description = "Nostr SDK Network library."
authors.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions 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.25.0"
version = "0.26.0"
edition = "2021"
description = "High level Nostr client library."
authors.workspace = true
Expand Down Expand Up @@ -35,18 +35,18 @@ nip47 = ["nostr/nip47"]
async-utility = "0.1"
nostr = { workspace = true, features = ["std"] }
nostr-database.workspace = true
nostr-sdk-net = { version = "0.25", path = "../nostr-sdk-net" }
nostr-sdk-net = { version = "0.26", path = "../nostr-sdk-net" }
once_cell.workspace = true
thiserror.workspace = true
tracing = { workspace = true, features = ["std", "attributes"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
nostr-rocksdb = { version = "0.1", path = "../nostr-rocksdb", optional = true }
nostr-sqlite = { version = "0.1", path = "../nostr-sqlite", optional = true }
nostr-rocksdb = { version = "0.26", path = "../nostr-rocksdb", optional = true }
nostr-sqlite = { version = "0.26", path = "../nostr-sqlite", optional = true }
tokio = { workspace = true, features = ["rt-multi-thread", "time", "macros", "sync"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
nostr-indexeddb = { version = "0.1", path = "../nostr-indexeddb", optional = true }
nostr-indexeddb = { version = "0.26", path = "../nostr-indexeddb", optional = true }
tokio = { workspace = true, features = ["rt", "macros", "sync"] }

[dev-dependencies]
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.1.0"
version = "0.26.0"
edition = "2021"
description = "SQLite Storage backend for Nostr apps"
authors.workspace = true
Expand Down
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.25.0"
version = "0.26.0"
edition = "2021"
description = "Rust implementation of the Nostr protocol."
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You may be interested in:

```toml
[dependencies]
nostr = "0.25"
nostr = "0.26"
```

```rust,no_run
Expand Down

0 comments on commit 0b6847e

Please sign in to comment.