-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: decode option event arg (#158) Release v0.12.0 (#157) Only return an error if the extrinsic failed. (#156) Update to rc6. (#155) Different assert. (#153) Add a method to fetch an unhashed key, close #100 (#152) Fix port number. (#151)
- Loading branch information
Showing
19 changed files
with
411 additions
and
319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ members = [".", "client", "proc-macro", "test-node"] | |
|
||
[package] | ||
name = "substrate-subxt" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -27,39 +27,40 @@ thiserror = "1.0.20" | |
futures = "0.3.5" | ||
jsonrpsee = { version = "0.1.0", features = ["ws"] } | ||
num-traits = { version = "0.2.12", default-features = false } | ||
serde = { version = "1.0.114", features = ["derive"] } | ||
serde_json = "1.0.56" | ||
serde = { version = "1.0.115", features = ["derive"] } | ||
serde_json = "1.0.57" | ||
url = "2.1.1" | ||
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive", "full"] } | ||
|
||
frame-metadata = { version = "11.0.0-rc5", package = "frame-metadata" } | ||
frame-support = { version = "2.0.0-rc5", package = "frame-support" } | ||
sp-runtime = { version = "2.0.0-rc5", package = "sp-runtime" } | ||
sp-version = { version = "2.0.0-rc5", package = "sp-version" } | ||
pallet-indices = { version = "2.0.0-rc5", package = "pallet-indices" } | ||
frame-metadata = { version = "11.0.0-rc6", package = "frame-metadata" } | ||
frame-support = { version = "2.0.0-rc6", package = "frame-support" } | ||
sp-runtime = { version = "2.0.0-rc6", package = "sp-runtime" } | ||
sp-version = { version = "2.0.0-rc6", package = "sp-version" } | ||
pallet-indices = { version = "2.0.0-rc6", package = "pallet-indices" } | ||
hex = "0.4.2" | ||
sp-std = "2.0.0-rc5" | ||
application-crypto = { version = "2.0.0-rc5", package = "sp-application-crypto", default-features = false } | ||
sp-finality-grandpa = "2.0.0-rc5" | ||
sp-consensus-babe = "0.8.0-rc5" | ||
pallet-im-online = "2.0.0-rc5" | ||
sp-authority-discovery = "2.0.0-rc5" | ||
pallet-staking = "2.0.0-rc5" | ||
|
||
sp-rpc = { version = "2.0.0-rc5", package = "sp-rpc" } | ||
sp-core = { version = "2.0.0-rc5", package = "sp-core" } | ||
sc-rpc-api = { version = "0.8.0-rc5", package = "sc-rpc-api" } | ||
sp-transaction-pool = { version = "2.0.0-rc5", package = "sp-transaction-pool" } | ||
substrate-subxt-client = { version = "0.3.0", path = "client", optional = true } | ||
substrate-subxt-proc-macro = { version = "0.11.0", path = "proc-macro" } | ||
sp-std = "2.0.0-rc6" | ||
application-crypto = { version = "2.0.0-rc6", package = "sp-application-crypto", default-features = false } | ||
sp-finality-grandpa = "2.0.0-rc6" | ||
sp-consensus-babe = "0.8.0-rc6" | ||
pallet-im-online = "2.0.0-rc6" | ||
sp-authority-discovery = "2.0.0-rc6" | ||
pallet-staking = "2.0.0-rc6" | ||
|
||
sp-rpc = { version = "2.0.0-rc6", package = "sp-rpc" } | ||
sp-core = { version = "2.0.0-rc6", package = "sp-core" } | ||
sc-rpc-api = { version = "0.8.0-rc6", package = "sc-rpc-api" } | ||
sp-transaction-pool = { version = "2.0.0-rc6", package = "sp-transaction-pool" } | ||
substrate-subxt-client = { version = "0.4.0", path = "client", optional = true } | ||
substrate-subxt-proc-macro = { version = "0.12.0", path = "proc-macro" } | ||
|
||
[dev-dependencies] | ||
async-std = { version = "1.6.2", features = ["attributes"] } | ||
async-std = { version = "1.6.3", features = ["attributes"] } | ||
env_logger = "0.7.1" | ||
frame-system = { version = "2.0.0-rc5", package = "frame-system" } | ||
pallet-balances = { version = "2.0.0-rc5", package = "pallet-balances" } | ||
sp-keyring = { version = "2.0.0-rc5", package = "sp-keyring" } | ||
substrate-subxt-client = { version = "0.3.0", path = "client" } | ||
frame-system = { version = "2.0.0-rc6", package = "frame-system" } | ||
pallet-balances = { version = "2.0.0-rc6", package = "pallet-balances" } | ||
sp-keyring = { version = "2.0.0-rc6", package = "sp-keyring" } | ||
substrate-subxt-client = { version = "0.4.0", path = "client" } | ||
tempdir = "0.3.7" | ||
test-node = { path = "test-node" } | ||
wabt = "0.10.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "substrate-subxt-client" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["David Craven <[email protected]>", "Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -12,19 +12,19 @@ description = "Embed a substrate node into your subxt application." | |
keywords = ["parity", "substrate", "blockchain"] | ||
|
||
[dependencies] | ||
async-std = "1.6.2" | ||
async-std = "1.6.3" | ||
futures = { version = "0.3.5", features = ["compat"] } | ||
futures01 = { package = "futures", version = "0.1.29" } | ||
jsonrpsee = "0.1.0" | ||
log = "0.4.11" | ||
sc-network = { version = "0.8.0-rc5", default-features = false } | ||
sc-service = { version = "0.8.0-rc5", default-features = false } | ||
serde_json = "1.0.56" | ||
sp-keyring = "2.0.0-rc5" | ||
sc-network = { version = "0.8.0-rc6", default-features = false } | ||
sc-service = { version = "0.8.0-rc6", default-features = false } | ||
serde_json = "1.0.57" | ||
sp-keyring = "2.0.0-rc6" | ||
thiserror = "1.0.20" | ||
|
||
[dev-dependencies] | ||
async-std = { version = "1.6.2", features = ["attributes"] } | ||
async-std = { version = "1.6.3", features = ["attributes"] } | ||
env_logger = "0.7.1" | ||
substrate-subxt = { path = ".." } | ||
tempdir = "0.3.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "substrate-subxt-proc-macro" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["David Craven <[email protected]>", "Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
autotests = false | ||
|
@@ -18,19 +18,19 @@ proc-macro = true | |
heck = "0.3.1" | ||
proc-macro2 = "1.0.19" | ||
proc-macro-crate = "0.1.5" | ||
proc-macro-error = "1.0.3" | ||
proc-macro-error = "1.0.4" | ||
quote = "1.0.7" | ||
syn = "1.0.35" | ||
syn = "1.0.38" | ||
synstructure = "0.12.4" | ||
|
||
[dev-dependencies] | ||
async-std = { version = "1.6.2", features = ["attributes"] } | ||
async-std = { version = "1.6.3", features = ["attributes"] } | ||
codec = { package = "parity-scale-codec", version = "1.3.4", features = ["derive"] } | ||
env_logger = "0.7.1" | ||
pretty_assertions = "0.6.1" | ||
sp-keyring = "2.0.0-rc5" | ||
sp-keyring = "2.0.0-rc6" | ||
substrate-subxt = { path = ".." } | ||
trybuild = "1.0.30" | ||
trybuild = "1.0.32" | ||
|
||
[[test]] | ||
name = "balances" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.