diff --git a/CHANGELOG.md b/CHANGELOG.md index ff60a0f..bf48704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.7](https://codeberg.org/JasterV/test-context/compare/v0.5.6...v0.5.7) - 2026-04-22 + +### Fixed + +- fix/pattern-matching-breaks-compilation ([#4](https://codeberg.org/JasterV/test-context/pulls/4)) + ## [0.5.6](https://codeberg.org/JasterV/test-context/compare/v0.5.5...v0.5.6) - 2026-04-22 -### Fix +### Other -- Fixed an issue identified in [#2](https://codeberg.org/JasterV/test-context/issues/2) where pattern matching in -test function arguments caused the macro to error. PR [#3](https://codeberg.org/JasterV/test-context/pulls/3) +- Updated docs ## [0.5.5](https://codeberg.org/JasterV/test-context/compare/v0.5.4...v0.5.5) - 2026-03-07 diff --git a/Cargo.toml b/Cargo.toml index 6f32c54..c33725b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["test-context", "test-context-macros"] [workspace.package] edition = "2024" -version = "0.5.6" +version = "0.5.7" rust-version = "1.91.0" homepage = "https://codeberg.org/JasterV/test-context" repository = "https://codeberg.org/JasterV/test-context" diff --git a/test-context/Cargo.toml b/test-context/Cargo.toml index 17b63a0..ea01925 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.6", path = "../test-context-macros/" } +test-context-macros = { version = "0.5.7", path = "../test-context-macros/" } futures = "0.3" [dev-dependencies]