From ff5a07091180b060e2a8b5b1bf5e80e501d9cd8a Mon Sep 17 00:00:00 2001 From: Serban Iorga Date: Fri, 7 Feb 2025 10:26:41 +0200 Subject: [PATCH] Release 3.7.4 (#701) * Release 3.7.4 * Update changelog --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa565d54..d562a6c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,16 @@ and this crate adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h ## Unreleased +### [3.7.4] - 2025-02-05 + +### Added + +- Disallow duplicate indexes using constant evaluation ([#653](https://github.com/paritytech/parity-scale-codec/pull/653)) + ### [3.7.3] - 2025-01-30 +### Added + - Fix added bounds in `Encode` and other derive macros. ([#689](https://github.com/paritytech/parity-scale-codec/pull/689)) ## [3.7.0] - 2024-11-18 diff --git a/Cargo.lock b/Cargo.lock index e13492a7..7900b151 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -608,7 +608,7 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "parity-scale-codec" -version = "3.7.3" +version = "3.7.4" dependencies = [ "arbitrary", "arrayvec", @@ -632,7 +632,7 @@ dependencies = [ [[package]] name = "parity-scale-codec-derive" -version = "3.7.3" +version = "3.7.4" dependencies = [ "parity-scale-codec", "proc-macro-crate", diff --git a/Cargo.toml b/Cargo.toml index 4286c00d..52a750b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true [dependencies] arrayvec = { version = "0.7", default-features = false } serde = { version = "1.0.217", default-features = false, optional = true } -parity-scale-codec-derive = { path = "derive", version = "=3.7.3", default-features = false, optional = true } +parity-scale-codec-derive = { path = "derive", version = "=3.7.4", default-features = false, optional = true } bitvec = { version = "1", default-features = false, features = ["alloc"], optional = true } bytes = { version = "1", default-features = false, optional = true } byte-slice-cast = { version = "1.2.2", default-features = false } @@ -66,7 +66,7 @@ full = [] members = ["derive", "fuzzer"] [workspace.package] -version = "3.7.3" +version = "3.7.4" authors = ["Parity Technologies "] license = "Apache-2.0" repository = "https://github.com/paritytech/parity-scale-codec"