From dbd5a812d9a3720eab826fb7a52dfb38de1c80b1 Mon Sep 17 00:00:00 2001 From: Pedro Queiroz Date: Sat, 25 Apr 2026 21:29:10 -0300 Subject: [PATCH] chore(main): release 0.3.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79b2e81..77c0d75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.3.0](https://github.com/pmqueiroz/lumen-diff/compare/v0.2.0...v0.3.0) (2026-04-26) + + +### Features + +* support .yml extension for config file ([d2441d1](https://github.com/pmqueiroz/lumen-diff/commit/d2441d1584ed400244e0ff36d55e2eae87717df2)) + + +### Bug Fixes + +* add timeouts to CDP operations to prevent process hang ([d249ae1](https://github.com/pmqueiroz/lumen-diff/commit/d249ae179e3c76838d3033e722bbcd78add0f0ad)) +* format message before warn ([1ebbd2b](https://github.com/pmqueiroz/lumen-diff/commit/1ebbd2ba8b3e598d9b6d61f05cb968386b8a993c)) +* handle --update flag in diff step ([6a2159e](https://github.com/pmqueiroz/lumen-diff/commit/6a2159e739689599ea8b4765305c1721b2226841)) + + +### Performance Improvements + +* eliminate double disk reads and skip diff image alloc on pass ([869f52e](https://github.com/pmqueiroz/lumen-diff/commit/869f52e21d34a9bd232c6d2e8a2cf20a7a50cbe8)) +* replace fixed server sleep with readiness probe ([7c68f8d](https://github.com/pmqueiroz/lumen-diff/commit/7c68f8d144a1389ede65e3c043e017644b57a365)) + ## [0.2.0](https://github.com/pmqueiroz/lumen-diff/compare/v0.1.0...v0.2.0) (2026-03-15) diff --git a/Cargo.lock b/Cargo.lock index bd17473..52d5127 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1380,7 +1380,7 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] name = "lumendiff" -version = "0.2.0" +version = "0.3.0" dependencies = [ "async-trait", "axum", diff --git a/Cargo.toml b/Cargo.toml index 2fcea4b..001290c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumendiff" -version = "0.2.0" +version = "0.3.0" edition = "2024" authors = ["Peam "] description = "High-performance visual regression testing tool"