diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d784aeb..90fa8637 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0] - 2021-09-01 +### Changed +- Replace Range variant with built-in composite definitions [(#130)](https://github.com/paritytech/scale-info/pull/130) + ## [0.12.0] - 2021-08-25 ### Changed - Add range getters, combine start and end types [(#126)](https://github.com/paritytech/scale-info/pull/126) diff --git a/Cargo.toml b/Cargo.toml index 1b3ba57f..4d78c6fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scale-info" -version = "0.12.0" +version = "1.0.0" authors = ["Parity Technologies "] edition = "2018" @@ -16,7 +16,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] bitvec = { version = "0.20.1", default-features = false, features = ["alloc"], optional = true } cfg-if = "1.0" -scale-info-derive = { version = "0.7.0", path = "derive", default-features = false, optional = true } +scale-info-derive = { version = "1.0.0", path = "derive", default-features = false, optional = true } serde = { version = "1", default-features = false, optional = true, features = ["derive", "alloc"] } derive_more = { version = "0.99.1", default-features = false, features = ["from"] } scale = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] } diff --git a/derive/Cargo.toml b/derive/Cargo.toml index e200a29d..13b24153 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scale-info-derive" -version = "0.7.0" +version = "1.0.0" authors = ["Parity Technologies ", "Centrality Developers "] edition = "2018"