diff --git a/CHANGELOG.md b/CHANGELOG.md index ff83c3fd..2d1aef14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [7.1.9] - 2025-02-12 ### Changed -- Resolved issue with window partially including non-windows, causing malformed json output (comma separators) [#2533](https://github.com/koekeishiya/yabai/issues/2533) +- Resolved issue with window query partially including non-windows, causing malformed json output (comma separators) [#2533](https://github.com/koekeishiya/yabai/issues/2533) ## [7.1.8] - 2025-02-09 ### Changed @@ -726,7 +728,8 @@ The *window_destroyed* signal is now triggered for windows that are implicitly d ### Added - First official release -[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.8...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.9...HEAD +[7.1.9]: https://github.com/koekeishiya/yabai/compare/v7.1.8...v7.1.9 [7.1.8]: https://github.com/koekeishiya/yabai/compare/v7.1.7...v7.1.8 [7.1.7]: https://github.com/koekeishiya/yabai/compare/v7.1.6...v7.1.7 [7.1.6]: https://github.com/koekeishiya/yabai/compare/v7.1.5...v7.1.6 diff --git a/scripts/install.sh b/scripts/install.sh index 2666d908..6fe2b208 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,8 +57,8 @@ fi AUTHOR="koekeishiya" NAME="yabai" -VERSION="7.1.8" -EXPECTED_HASH="8df9be7e92daac9f8bebd9d19da9fdbad9499f4f539fe5f032f806fa39525b60" +VERSION="7.1.9" +EXPECTED_HASH="15b6947cf41391664aaa7651fe11930ea264dbe72da08c35b5c35b53dc8848b3" TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer" mkdir $TMP_DIR diff --git a/src/yabai.c b/src/yabai.c index 8660f2da..369438de 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -22,7 +22,7 @@ #define MAJOR 7 #define MINOR 1 -#define PATCH 8 +#define PATCH 9 struct signal *g_signal_event[SIGNAL_TYPE_COUNT]; struct process_manager g_process_manager;