From a18735f0eb7f4a46b122708ac91cf154f7876c34 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 3 May 2024 05:53:54 +0100 Subject: [PATCH] Release 0.5.3 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- crates/rubedo-macros/Cargo.toml | 2 +- crates/rubedo/Cargo.toml | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9fba25..7aed81b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,14 @@ The format is based on [Keep a Changelog][], and this project adheres to [Semantic Versioning][]. +## 0.5.3 (03 May 2024) + +### Changed + + - Added lint exception due to [bug in Rust 1.78](https://github.com/rust-lang/rust-clippy/issues/12438) + - Updated crate dependencies + + ## 0.5.2 (02 April 2024) ### Changed diff --git a/Cargo.toml b/Cargo.toml index a3e3986..d42ed09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.5.2" +version = "0.5.3" edition = "2021" license = "MIT" authors = ["Dan Williams "] diff --git a/crates/rubedo-macros/Cargo.toml b/crates/rubedo-macros/Cargo.toml index fb5290e..acc139d 100644 --- a/crates/rubedo-macros/Cargo.toml +++ b/crates/rubedo-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rubedo-macros" -version = "0.5.2" +version = "0.5.3" description = "Proc macros for Rubedo" categories = ["development-tools"] keywords = ["macro", "library", "utility"] diff --git a/crates/rubedo/Cargo.toml b/crates/rubedo/Cargo.toml index e8419b2..9ecd6d4 100644 --- a/crates/rubedo/Cargo.toml +++ b/crates/rubedo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rubedo" -version = "0.5.2" +version = "0.5.3" description = "Library of useful functionality and extensions" categories = ["development-tools"] keywords = ["library", "utility"] @@ -27,7 +27,7 @@ http = "0.2.12" http-body = "0.4.6" hyper = "0.14.28" rand_core = "0.6.4" -rubedo-macros = { path = "../rubedo-macros", version = "0.5.2" } +rubedo-macros = { path = "../rubedo-macros", version = "0.5.3" } rust_decimal = "1.35.0" serde = { version = "1.0.200", features = ["derive"] } serde_json = { version = "1.0.116", features = ["preserve_order"] }