From 3d1ddaf690f38ee8eb990d23bc67ed49dec5cf2b Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 2 Apr 2024 17:51:36 +0200 Subject: [PATCH] chore: release v0.4.3 (#26) --- CHANGELOG.md | 4 ++++ Cargo.lock | 4 ++-- Cargo.toml | 6 +++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cfab89..a217c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# [0.4.3] - 2024-04-02 + +This release that adds support for the builtin types `BinaryHeap`, `LinkedList` and `VecDeque`. + # [0.4.2] - 2024-03-26 - Revert some code simplification in 0.4.1 so that older metadata (built with scale-info versions prior to 2.11.1 and using the `retain()` method) is more likely to work. diff --git a/Cargo.lock b/Cargo.lock index 5610262..d70a689 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "scale-typegen" -version = "0.4.2" +version = "0.4.3" dependencies = [ "bitvec", "frame-metadata 16.0.0", @@ -439,7 +439,7 @@ dependencies = [ [[package]] name = "scale-typegen-description" -version = "0.4.2" +version = "0.4.3" dependencies = [ "anyhow", "indoc", diff --git a/Cargo.toml b/Cargo.toml index 55c3615..286c2ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,15 +6,15 @@ resolver = "2" [workspace.package] authors = ["Parity Technologies "] edition = "2021" -version = "0.4.2" +version = "0.4.3" rust-version = "1.70.0" license = "Apache-2.0 OR GPL-3.0" repository = "https://github.com/paritytech/scale-typegen" homepage = "https://www.parity.io/" [workspace.dependencies] -scale-typegen-description = { version = "0.4.2", path = "description" } -scale-typegen = { version = "0.4.2", path = "typegen" } +scale-typegen-description = { version = "0.4.3", path = "description" } +scale-typegen = { version = "0.4.3", path = "typegen" } # external dependencies parity-scale-codec = { version = "3.6.5", features = ["derive"] }