diff --git a/CHANGELOG.md b/CHANGELOG.md index 7aed81b..149d7f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,18 @@ The format is based on [Keep a Changelog][], and this project adheres to [Semantic Versioning][]. +## 0.5.4 (05 September 2024) + +### Changed + + - Updated lint configuration for Rust 1.79 + - Updated lint configuration for Rust 1.80 + - Updated lint configuration for Rust 1.81 + - Updated crate dependencies + - Linted tests + - Moved linting configuration to Cargo.toml + + ## 0.5.3 (03 May 2024) ### Changed diff --git a/Cargo.toml b/Cargo.toml index 65dabe9..63e2ffd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.5.3" +version = "0.5.4" edition = "2021" license = "MIT" authors = ["Dan Williams "] diff --git a/crates/rubedo-macros/Cargo.toml b/crates/rubedo-macros/Cargo.toml index 9519de9..f258831 100644 --- a/crates/rubedo-macros/Cargo.toml +++ b/crates/rubedo-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rubedo-macros" -version = "0.5.3" +version = "0.5.4" 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 96abe04..30e3c98 100644 --- a/crates/rubedo/Cargo.toml +++ b/crates/rubedo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rubedo" -version = "0.5.3" +version = "0.5.4" description = "Library of useful functionality and extensions" categories = ["development-tools"] keywords = ["library", "utility"] @@ -26,7 +26,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.3" } +rubedo-macros = { path = "../rubedo-macros", version = "0.5.4" } rust_decimal = "1.36.0" serde = { version = "1.0.209", features = ["derive"] } serde_json = { version = "1.0.128", features = ["preserve_order"] }