diff --git a/CHANGELOG.md b/CHANGELOG.md index 97c83ed..2c4a333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [0.5.0] - 2026-04-24 + +### Breaking +- [**breaking**] bump alacritty_terminal to fix PTY file descriptor leak +([bd52ab2](https://github.com/tomcur/termsnap/commit/bd52ab2d3d583c50ae7f099efa63f9e794f62826)) + + +### Refactor +- expect dead code +([f06befa](https://github.com/tomcur/termsnap/commit/f06befa3fcdc5ef5ccfe7bc04169a8ce2ef8d607)) + + +### Other +- Bump input flakes +([3859ddd](https://github.com/tomcur/termsnap/commit/3859ddd43ae58fc698b360d8ea7d4a43c7f48cdf)) +- track version, edition and license in workspace +([39d9a76](https://github.com/tomcur/termsnap/commit/39d9a7601162f77b7c3e6be171c91d14bc7344f3)) +- correct flake description +([13cb95c](https://github.com/tomcur/termsnap/commit/13cb95cf9fb52e7178f551ce755d79bb81f9f664)) +- bump input flakes +([09d719a](https://github.com/tomcur/termsnap/commit/09d719ab252bc36d4ee8078958b4ab690beb93f4)) +- Honor color palette from terminal escape sequences +([1e8c5d7](https://github.com/tomcur/termsnap/commit/1e8c5d7d17c41bc100efa02cf61b0cd93b677a65)) + + + ## [0.4.0] - 2024-07-27 ### Breaking diff --git a/Cargo.lock b/Cargo.lock index 05405ae..6e06c11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "termsnap" -version = "0.4.0" +version = "0.5.0" dependencies = [ "alacritty_terminal", "anyhow", @@ -501,7 +501,7 @@ dependencies = [ [[package]] name = "termsnap-lib" -version = "0.4.0" +version = "0.5.0" dependencies = [ "alacritty_terminal", ] diff --git a/Cargo.toml b/Cargo.toml index df9e61f..a2eb839 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ ] [workspace.package] -version = "0.4.0" +version = "0.5.0" license = "MIT OR Apache-2.0" edition = "2021" @@ -29,4 +29,4 @@ clap = { version = "4.5.7", features = ["derive"] } rustix = { version = "0.38.34", features = ["event", "fs", "termios"] } signal-hook = "0.3.17" -termsnap-lib = { path = "./termsnap-lib", version = "0.4.0" } +termsnap-lib = { path = "./termsnap-lib", version = "0.5.0" }