Skip to content

Commit cb18c8e

Browse files
Prepare release 2.0.0 (#140)
* Uprgrade to SCALE 3.0 * We rather do a major release * Changelog for 2.0.0 release Co-authored-by: James Wilson <[email protected]>
1 parent 6b5d260 commit cb18c8e

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.0] - 2022-02-07
11+
12+
## Changed
13+
- Upgraded to parity-scale-codec 3.0
14+
- Upgraded to bitvec 1.0
15+
- Minimum Rust version is 1.56.1 for edition 2021
16+
1017
## [1.0.0] - 2021-09-01
1118
### Changed
1219
- Replace Range variant with built-in composite definitions [(#130)](https://github.com/paritytech/scale-info/pull/130)

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[package]
22
name = "scale-info"
3-
version = "1.0.0"
3+
version = "2.0.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2021"
6+
rust-version = "1.56.1"
67

78
license = "Apache-2.0"
89
readme = "README.md"
@@ -16,10 +17,10 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
1617
[dependencies]
1718
bitvec = { version = "1", default-features = false, features = ["alloc"], optional = true }
1819
cfg-if = "1.0"
19-
scale-info-derive = { version = "1.0.0", path = "derive", default-features = false, optional = true }
20+
scale-info-derive = { version = "2.0.0", path = "derive", default-features = false, optional = true }
2021
serde = { version = "1", default-features = false, optional = true, features = ["derive", "alloc"] }
2122
derive_more = { version = "0.99.1", default-features = false, features = ["from"] }
22-
scale = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] }
23+
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
2324

2425
[features]
2526
default = ["std"]

derive/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
[package]
22
name = "scale-info-derive"
3-
version = "1.0.0"
4-
authors = ["Parity Technologies <[email protected]>", "Centrality Developers <[email protected]>"]
3+
version = "2.0.0"
4+
authors = [
5+
"Parity Technologies <[email protected]>",
6+
"Centrality Developers <[email protected]>",
7+
]
58
edition = "2021"
9+
rust-version = "1.56.1"
610

711
license = "Apache-2.0"
812
repository = "https://github.com/paritytech/scale-info"

test_suite/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "scale-info-test-suite"
33
version = "0.0.0"
4-
authors = ["Parity Technologies <[email protected]>", "Centrality Developers <[email protected]>"]
4+
authors = [
5+
"Parity Technologies <[email protected]>",
6+
"Centrality Developers <[email protected]>",
7+
]
58
edition = "2021"
69
publish = false
710

@@ -12,7 +15,7 @@ license = "Apache-2.0"
1215
[dependencies]
1316
scale-info = { path = "..", features = ["derive", "serde", "decode"] }
1417

15-
scale = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] }
18+
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
1619
serde = "1.0"
1720
serde_json = "1.0"
1821
pretty_assertions = "0.6.1"

0 commit comments

Comments
 (0)