From ede33c3594bb9e1216fbce4a9345c6e39b2b07b7 Mon Sep 17 00:00:00 2001 From: Tsvetomir Dimitrov Date: Wed, 8 May 2024 13:36:00 +0300 Subject: [PATCH] Version 2.11.3 (#208) --- CHANGELOG.md | 3 +++ Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71fbb664..6f57e3e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.11.3] - 2024-05-08 +- Bump `proc-macro-crate` to version 3. + ## [2.11.2] - 2024-04-05 - Fix a bug in the `PortableRegistry::retain()` method where recursive types (types containing themselves) were not properly handled. diff --git a/Cargo.toml b/Cargo.toml index ea07623c..7b8a036b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,14 +17,14 @@ categories.workspace = true [dependencies] bitvec = { version = "1", default-features = false, features = ["alloc"], optional = true } cfg-if = "1.0" -scale-info-derive = { version = "2.11.2", path = "derive", default-features = false, optional = true } +scale-info-derive = { version = "2.11.3", path = "derive", default-features = false, optional = true } serde = { version = "1", default-features = false, optional = true, features = ["derive", "alloc"] } derive_more = { version = "0.99.1", default-features = false, features = ["from"] } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } schemars = { version = "0.8", optional = true } [dev-dependencies] -scale-info-derive = { version = "2.11.2", path = "derive" } +scale-info-derive = { version = "2.11.3", path = "derive" } [features] default = ["std"] @@ -60,7 +60,7 @@ members = [ ] [workspace.package] -version = "2.11.2" +version = "2.11.3" authors = [ "Parity Technologies ", "Centrality Developers ",