diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a3fab3..3bf5751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/JasterV/test-context/compare/v0.5.1...v0.5.2) - 2025-11-06 + +### Added + +- make it so immutable references & full ownership can be taken depending on context ([#58](https://github.com/JasterV/test-context/pull/58)) + +### Other + +- update CHANGELOGS + ## [0.5.1](https://github.com/JasterV/test-context/compare/v0.5.0...v0.5.1) - 2025-11-04 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index b49d6d5..79268ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["test-context", "test-context-macros"] [workspace.package] edition = "2024" -version = "0.5.1" +version = "0.5.2" rust-version = "1.91.0" homepage = "https://github.com/JasterV/test-context" repository = "https://github.com/JasterV/test-context" diff --git a/test-context/Cargo.toml b/test-context/Cargo.toml index 1666bf9..0301408 100644 --- a/test-context/Cargo.toml +++ b/test-context/Cargo.toml @@ -13,7 +13,7 @@ authors.workspace = true license.workspace = true [dependencies] -test-context-macros = { version = "0.5.1", path = "../test-context-macros/" } +test-context-macros = { version = "0.5.2", path = "../test-context-macros/" } futures = "0.3" [dev-dependencies]