diff --git a/CHANGELOG.md b/CHANGELOG.md index c230eac..5a3fab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/JasterV/test-context/compare/v0.5.0...v0.5.1) - 2025-11-04 + +### Fixed + +- Regression in version 0.5.0 ([#55](https://github.com/JasterV/test-context/pull/55)) + ### Added - Add a CHANGELOG by @JasterV - Add a rust-toolchain.toml by @JasterV diff --git a/Cargo.toml b/Cargo.toml index 986f229..b49d6d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["test-context", "test-context-macros"] [workspace.package] edition = "2024" -version = "0.5.0" +version = "0.5.1" 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 1a85396..1666bf9 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.0", path = "../test-context-macros/" } +test-context-macros = { version = "0.5.1", path = "../test-context-macros/" } futures = "0.3" [dev-dependencies]