Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump to 0.27.0
  • Loading branch information
jsdw committed Feb 13, 2023
commit 0413961ebc80b6ac025b56785bf42ac745678064
18 changes: 9 additions & 9 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subxt-cli"
version = "0.26.0"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
publish = true
Expand All @@ -17,9 +17,9 @@ path = "src/main.rs"

[dependencies]
# perform subxt codegen
subxt-codegen = { version = "0.26.0", path = "../codegen" }
subxt-codegen = { version = "0.27.0", path = "../codegen" }
# perform node compatibility
subxt-metadata = { version = "0.26.0", path = "../metadata" }
subxt-metadata = { version = "0.27.0", path = "../metadata" }
# parse command line args
clap = { version = "4.1.4", features = ["derive", "cargo"] }
# colourful error reports
Expand Down
4 changes: 2 additions & 2 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subxt-codegen"
version = "0.26.0"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
publish = true
Expand All @@ -21,7 +21,7 @@ proc-macro-error = "1.0.4"
quote = "1.0.8"
syn = "1.0.58"
scale-info = "2.0.0"
subxt-metadata = { version = "0.26.0", path = "../metadata" }
subxt-metadata = { version = "0.27.0", path = "../metadata" }
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] }
hex = "0.4.3"
tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subxt-examples"
version = "0.26.0"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subxt-macro"
version = "0.26.0"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
publish = true
Expand All @@ -20,4 +20,4 @@ darling = "0.14.3"
proc-macro-error = "1.0.4"
syn = "1.0.58"

subxt-codegen = { path = "../codegen", version = "0.26.0" }
subxt-codegen = { path = "../codegen", version = "0.27.0" }
2 changes: 1 addition & 1 deletion metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subxt-metadata"
version = "0.26.0"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
publish = true
Expand Down
6 changes: 3 additions & 3 deletions subxt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subxt"
version = "0.26.0"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
publish = true
Expand Down Expand Up @@ -50,8 +50,8 @@ parking_lot = "0.12.0"
frame-metadata = "15.0.0"
derivative = "2.2.0"

subxt-macro = { version = "0.26.0", path = "../macro" }
subxt-metadata = { version = "0.26.0", path = "../metadata" }
subxt-macro = { version = "0.27.0", path = "../macro" }
subxt-metadata = { version = "0.27.0", path = "../metadata" }

# Provides some deserialization, types like U256/H256 and hashing impls like twox/blake256:
impl-serde = { version = "0.4.0" }
Expand Down
6 changes: 3 additions & 3 deletions testing/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "integration-tests"
version = "0.26.0"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
publish = false
Expand All @@ -27,8 +27,8 @@ sp-core = { version = "16.0.0", default-features = false }
sp-keyring = "18.0.0"
sp-runtime = "18.0.0"
syn = "1.0.0"
subxt = { version = "0.26.0", path = "../../subxt" }
subxt-codegen = { version = "0.26.0", path = "../../codegen" }
subxt = { version = "0.27.0", path = "../../subxt" }
subxt-codegen = { version = "0.27.0", path = "../../codegen" }
test-runtime = { path = "../test-runtime" }
tokio = { version = "1.25", features = ["macros", "time"] }
tracing = "0.1.34"
Expand Down
2 changes: 1 addition & 1 deletion testing/test-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-runtime"
version = "0.26.0"
version = "0.27.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion testing/ui-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ui-tests"
version = "0.26.0"
version = "0.27.0"
edition = "2021"
publish = false

Expand Down