Skip to content

Commit

Permalink
Release 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
danwilliams committed Nov 12, 2024
1 parent a6f88eb commit 78a5043
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/rubedo-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions crates/rubedo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down Expand Up @@ -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"] }
Expand Down

0 comments on commit 78a5043

Please sign in to comment.