diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b4b30f..b7d6e5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.4](https://github.com/bjackman/limmat/compare/v0.2.3...v0.2.4) - 2025-01-12 + +### Added + +- Add LIMMAT_CONFIG to job env + +### Fixed + +- Don't hold database locks from UI code + +### Other + +- Remove false fallibility +- Remove unnecessary data from OutputBuffer::render_cases +- Factor out OutputBuffer::render_case +- Support dumping child output on drop +- Shitty bullshit hacks for printf debugging in shitty tests +- cargo add --dev chrono +- Strip ansi codes when dumping stdout +- *(dev)* Document build release artifacts + ## [0.2.3](https://github.com/bjackman/limmat/compare/v0.2.2...v0.2.3) - 2025-01-08 ### Added diff --git a/Cargo.lock b/Cargo.lock index 3446849..02f5c15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -987,7 +987,7 @@ dependencies = [ [[package]] name = "limmat" -version = "0.2.3" +version = "0.2.4" dependencies = [ "ansi-control-codes", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 792bf2b..6407875 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "limmat" -version = "0.2.3" +version = "0.2.4" edition = "2021" license = "GPL-3.0-only" description = "Tool to run continuous tests locally on Git revision ranges."