diff --git a/CHANGELOG.md b/CHANGELOG.md index cbed81f..f97ee9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v0.7.0 + +- Use types from `substrate-crypto-light` crate +- Asset tip recognition +- Multisignature recognition + # v0.6.1 - Add interpretation of `TxVersion` in struct fields, not only extensions diff --git a/Cargo.toml b/Cargo.toml index 569be6d..2d0a902 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ description = "parser for Substrate chain data" license = "GPL-3.0-or-later" name = "substrate_parser" -version = "0.6.1" +version = "0.7.0" authors = ["Alexander Slesarev ", "Vera Abramova "] edition = "2021" repository = "https://github.com/Alzymologist/substrate-parser" @@ -23,7 +23,7 @@ primitive-types = {version = "0.13.1", default-features = false} scale-info = {version = "2.11.5", default-features = false} sp-arithmetic = {version = "26.0.0", default-features = false} sp-crypto-hashing = {version = "0.1.0", default-features = false} -substrate-crypto-light = {git = "https://github.com/Alzymologist/substrate-crypto-light", default-features = false, features = ["ecdsa", "ed25519", "sr25519"]} +substrate-crypto-light = {version = "0.1.0", default-features = false, features = ["ecdsa", "ed25519", "sr25519"]} [features] default = ["std"]