Skip to content

Commit 552fb48

Browse files
authored
chore: release v0.10.0 (#34)
1 parent 5caa282 commit 552fb48

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog].
44

55
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
66

7+
## [0.10.0] - 2024-11-15
8+
9+
This release updates scale-bits to 0.7.0 which is exposed in the public API of scale-encode.
10+
711
## [v0.9.0] - 2024-11-11
812

913
This release makes scale-encode entirely no_std which is now using core::error::Error instead of std::error::Error as it was using before behind the std feature. Because of that the std feature is now removed and the MSRV is bumped to 1.81.0.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["scale-encode", "scale-encode-derive", "testing/no_std"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.9.0"
6+
version = "0.10.0"
77
authors = ["Parity Technologies <[email protected]>"]
88
edition = "2021"
99
license = "Apache-2.0"
@@ -14,5 +14,5 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
1414
rust-version = "1.81.0"
1515

1616
[workspace.dependencies]
17-
scale-encode = { version = "0.9.0", path = "scale-encode" }
18-
scale-encode-derive = { version = "0.9.0", path = "scale-encode-derive" }
17+
scale-encode = { version = "0.10.0", path = "scale-encode" }
18+
scale-encode-derive = { version = "0.10.0", path = "scale-encode-derive" }

scale-encode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bits = ["dep:scale-bits"]
2929
[dependencies]
3030
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
3131
scale-type-resolver = { version = "0.2.0", default-features = false, features = ["visitor"] }
32-
scale-bits = { version = "0.6.0", default-features = false, optional = true }
32+
scale-bits = { version = "0.7.0", default-features = false, optional = true }
3333
scale-encode-derive = { workspace = true, optional = true }
3434
primitive-types = { version = "0.13.1", optional = true, default-features = false }
3535
smallvec = "1.10.0"

0 commit comments

Comments
 (0)