Skip to content

Commit

Permalink
rust: bump to v0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yukibtc committed Jan 18, 2024
1 parent 7487efd commit 77c9f17
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 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 @@ -19,8 +19,8 @@ rust-version = "1.64.0"
async-trait = "0.1"
async-utility = "0.1"
js-sys = "0.3"
nostr = { version = "0.26", path = "./crates/nostr", default-features = false }
nostr-database = { version = "0.26", path = "./crates/nostr-database", default-features = false }
nostr = { version = "0.27", path = "./crates/nostr", default-features = false }
nostr-database = { version = "0.27", path = "./crates/nostr-database", default-features = false }
once_cell = "1.19"
serde_json = { version = "1.0", default-features = false }
thiserror = "1.0"
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.26.0"
version = "0.27.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.26.0"
version = "0.27.0"
edition = "2021"
description = "Web's IndexedDB Storage backend for Nostr apps"
authors.workspace = true
Expand Down
6 changes: 3 additions & 3 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.26.0"
version = "0.27.0"
edition = "2021"
description = "High level Nostr client library."
authors.workspace = true
Expand Down Expand Up @@ -42,11 +42,11 @@ thiserror.workspace = true
tracing = { workspace = true, features = ["std", "attributes"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
nostr-sqlite = { version = "0.26", path = "../nostr-sqlite", optional = true }
nostr-sqlite = { version = "0.27", 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.26", path = "../nostr-indexeddb", optional = true }
nostr-indexeddb = { version = "0.27", path = "../nostr-indexeddb", optional = true }
tokio = { workspace = true, features = ["rt", "macros", "sync"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ other lower-level crates. If you're attempting something more custom, you might

```toml
[dependencies]
nostr-sdk = "0.26"
nostr-sdk = "0.27"
tokio = { version = "1", features = ["full"] }
```

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.26.0"
version = "0.27.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.26.0"
version = "0.27.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 @@ -19,7 +19,7 @@ You may be interested in:

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

```rust,no_run
Expand Down

0 comments on commit 77c9f17

Please sign in to comment.