Skip to content

Commit

Permalink
chore: release v0.10.0 (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 authored Nov 15, 2024
1 parent 5caa282 commit 552fb48
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog].

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

## [0.10.0] - 2024-11-15

This release updates scale-bits to 0.7.0 which is exposed in the public API of scale-encode.

## [v0.9.0] - 2024-11-11

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.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["scale-encode", "scale-encode-derive", "testing/no_std"]
resolver = "2"

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

[workspace.dependencies]
scale-encode = { version = "0.9.0", path = "scale-encode" }
scale-encode-derive = { version = "0.9.0", path = "scale-encode-derive" }
scale-encode = { version = "0.10.0", path = "scale-encode" }
scale-encode-derive = { version = "0.10.0", path = "scale-encode-derive" }
2 changes: 1 addition & 1 deletion scale-encode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bits = ["dep:scale-bits"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
scale-type-resolver = { version = "0.2.0", default-features = false, features = ["visitor"] }
scale-bits = { version = "0.6.0", default-features = false, optional = true }
scale-bits = { version = "0.7.0", default-features = false, optional = true }
scale-encode-derive = { workspace = true, optional = true }
primitive-types = { version = "0.13.1", optional = true, default-features = false }
smallvec = "1.10.0"
Expand Down

0 comments on commit 552fb48

Please sign in to comment.