From caa38cbb6256ae7ebdccc23d35a7633d4f43c2bd Mon Sep 17 00:00:00 2001 From: Alexandru Vasile <60601340+lexnv@users.noreply.github.com> Date: Wed, 29 Mar 2023 23:00:45 +0300 Subject: [PATCH] Release 2.5.0 (#177) * Bump versions to v2.5.0 Signed-off-by: Alexandru Vasile * Update changelog Signed-off-by: Alexandru Vasile * Change changelog to reflect the irreversibal passing of time Signed-off-by: Alexandru Vasile --------- Signed-off-by: Alexandru Vasile --- CHANGELOG.md | 7 ++++++- Cargo.toml | 4 ++-- derive/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11b1722a..d10cdf27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ 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.4.0] - 2022-03-23 +## [2.5.0] - 2023-03-29 + +### Added +- ty: Make type fields public [(#176)](https://github.com/paritytech/scale-info/pull/176) + +## [2.4.0] - 2023-03-23 ### Added - portable: Retain the provided type IDs [(#174)](https://github.com/paritytech/scale-info/pull/174) diff --git a/Cargo.toml b/Cargo.toml index 508233e1..1f9fbde1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scale-info" -version = "2.4.0" +version = "2.5.0" authors = ["Parity Technologies "] edition = "2021" rust-version = "1.60.0" @@ -17,7 +17,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] bitvec = { version = "1", default-features = false, features = ["alloc"], optional = true } cfg-if = "1.0" -scale-info-derive = { version = "2.4.0", path = "derive", default-features = false, optional = true } +scale-info-derive = { version = "2.5.0", 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"] } diff --git a/derive/Cargo.toml b/derive/Cargo.toml index e641e667..9475bebf 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scale-info-derive" -version = "2.4.0" +version = "2.5.0" authors = [ "Parity Technologies ", "Centrality Developers ",