From 78a5043a2340ca8950760553c7ac30fa720b23fe Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 12 Nov 2024 03:39:19 +0000 Subject: [PATCH] Release 0.6.3 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- crates/rubedo-macros/Cargo.toml | 2 +- crates/rubedo/Cargo.toml | 4 ++-- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebac050..6e156af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,22 @@ The format is based on [Keep a Changelog][], and this project adheres to [Semantic Versioning][]. +## 0.6.3 (12 November 2024) + +### Fixed + + - Fixed `std::PathExt.normalize()` on Windows + - Fixed `std::PathExt.restrict()` on Windows + - Fixed `std::PathExt.strip_root()` tests on Windows + - Adjusted `IpAddr` referencing in the `ip!` macro + +### Changed + + - Implemented `ThisError` for error types + - Updated lint configuration for Rust 1.82 + - Updated crate dependencies + + ## 0.6.2 (10 September 2024) ### Added diff --git a/Cargo.toml b/Cargo.toml index e72b74e..0d41525 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.6.2" +version = "0.6.3" edition = "2021" rust-version = "1.81.0" license = "MIT" diff --git a/crates/rubedo-macros/Cargo.toml b/crates/rubedo-macros/Cargo.toml index 9ad077c..65edb16 100644 --- a/crates/rubedo-macros/Cargo.toml +++ b/crates/rubedo-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rubedo-macros" -version = "0.6.2" +version = "0.6.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 29f55f7..16c496a 100644 --- a/crates/rubedo/Cargo.toml +++ b/crates/rubedo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rubedo" -version = "0.6.2" +version = "0.6.3" description = "Library of useful functionality and extensions" categories = ["development-tools"] keywords = ["library", "utility"] @@ -45,7 +45,7 @@ http = { optional = true, version = "1.1.0" } http-body-util = { optional = true, version = "0.1.2" } hyper = { optional = true, version = "1.5.0" } rand_core = { optional = true, version = "0.6.4" } -rubedo-macros = { optional = true, version = "0.6.2", path = "../rubedo-macros" } +rubedo-macros = { optional = true, version = "0.6.3", path = "../rubedo-macros" } rust_decimal = { optional = true, version = "1.36.0" } serde = { optional = true, version = "1.0.215", features = ["derive"] } serde_json = { optional = true, version = "1.0.132", features = ["preserve_order"] }