From 01e5aa520f2d85f9189d44e7e2efc4d7c6ffa4f8 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 14 Sep 2022 16:05:40 +0100 Subject: [PATCH] Bump to 3.2.1 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68ae8866..931bfc71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this crate are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this crate adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.2.1] - 2022-09-14 + +This release fixes compilation on no-std envs. + +## Changed + + - Use core RangeInclusive instead of std [#378](https://github.com/paritytech/parity-scale-codec/pull/378) + ## [3.2.0] - 2022-09-13 This release (specifically [#375](https://github.com/paritytech/parity-scale-codec/pull/375)) bumps the MSRV to 1.60.0 as it depends on the Cargo.toml weak dependency feature. diff --git a/Cargo.toml b/Cargo.toml index 8521b85b..2aa7ba6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "parity-scale-codec" description = "SCALE - Simple Concatenating Aggregated Little Endians" -version = "3.2.0" +version = "3.2.1" authors = ["Parity Technologies "] license = "Apache-2.0" repository = "https://github.com/paritytech/parity-scale-codec"