Skip to content

Commit

Permalink
chore: release 0.10.0 (#51)
Browse files Browse the repository at this point in the history
* chore(deps): bump thiserror 1.0.0 to 2.0.0

* bump scale crates

* update CHANGELOG

* Update CHANGELOG.md
  • Loading branch information
niklasad1 authored Nov 15, 2024
1 parent e54b44a commit 700d50b
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 88 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@

# [0.10.0] - 2024-11-15

This is a breaking release that mainly bumps `scale-related dependencies` to their latest versions which are exposed in the public API.

- Bump `thiserror` to 2.0
- Bump `scale-value` to 0.18.0
- Bump `scale-encode` to 0.10.0
- Bump `scale-decode` to 0.16.0
- Bump `scale-bits` to 0.7.0
- Bump MSRV to 1.81.0

# [0.9.0] - 2024-10-22

- Bump `scale-value` to 0.17.0 ([#35](https://github.com/paritytech/scale-typegen/pull/35))
Expand Down
109 changes: 27 additions & 82 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resolver = "2"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version = "0.9.0"
rust-version = "1.70.0"
rust-version = "1.81.0"
license = "Apache-2.0 OR GPL-3.0"
repository = "https://github.com/paritytech/scale-typegen"
homepage = "https://www.parity.io/"
Expand All @@ -20,19 +20,19 @@ scale-typegen = { version = "0.9.0", path = "typegen" }
parity-scale-codec = { version = "3.6.12", features = ["derive"] }
proc-macro2 = "1.0.89"
quote = "1.0.33"
scale-bits = "0.6.0"
scale-bits = "0.7.0"
scale-info = { version = "2.11.1", features = ["derive", "bit-vec", "decode", "docs", "serde"] }
smallvec = "1.10.0"
syn = { version = "2.0.38", features = ["full", "extra-traits"] }
thiserror = "1.0.50"
thiserror = { version = "2.0.0", default-features = false }
prettyplease = "0.2.25"
scale-decode = "0.14.0"
scale-encode = "0.8.0"
scale-decode = "0.16.0"
scale-encode = "0.10.0"
frame-metadata = { version = "17.0.0", default-features = false, features = ["current", "std"] }
bitvec = { version = "1", default-features = false, features = ["alloc"] }
pretty_assertions = "1.4.1"
anyhow = "1.0.92"
peekmore = "1.3.0"
scale-value = "0.17.0"
scale-value = "0.18.0"
rand_chacha = "0.3.1"
rand = "0.8.5"

0 comments on commit 700d50b

Please sign in to comment.