diff --git a/CHANGELOG.md b/CHANGELOG.md index 981c502..5f24527 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.4](https://github.com/JasterV/test-context/compare/v0.5.3...v0.5.4) - 2025-11-10 + +### Other + +- internal refactor & update docs ([#64](https://github.com/JasterV/test-context/pull/64)) + ## [0.5.3](https://github.com/JasterV/test-context/compare/v0.5.2...v0.5.3) - 2025-11-06 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 65f6735..f14652f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["test-context", "test-context-macros"] [workspace.package] edition = "2024" -version = "0.5.3" +version = "0.5.4" 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 e7863e8..dca4c67 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.3", path = "../test-context-macros/" } +test-context-macros = { version = "0.5.4", path = "../test-context-macros/" } futures = "0.3" [dev-dependencies] diff --git a/test-context/README.md b/test-context/README.md new file mode 120000 index 0000000..32d46ee --- /dev/null +++ b/test-context/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file diff --git a/test-context/src/lib.rs b/test-context/src/lib.rs index ac92065..3b08137 100644 --- a/test-context/src/lib.rs +++ b/test-context/src/lib.rs @@ -1,4 +1,4 @@ -#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/../README.md"))] +#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))] // Reimported to allow for use in the macro. pub use futures;