diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f32384..b996dfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v0.5.0 + +New features: + +- MetadataV15 support +- `AsMetadata` trait now requires milder implementation, so that it is usable on shortened metadata +- `AsCompleteMetadata` trait should be used instead now for full functionality (parsing of unchecked extrinsics) + +API changes: + +- What used to be `AsMetadata` might need to become `AsCompleteMetadata`, see above + # v0.4.0 This is a major rehaul of crate. Older versions are going into deprecation soon, as they are desperately obsolete at this point. diff --git a/Cargo.toml b/Cargo.toml index 902ec4e..16f4d2d 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.4.0" +version = "0.5.0" authors = ["Alexander Slesarev ", "Vera Abramova "] edition = "2021" repository = "https://github.com/Alzymologist/substrate-parser"