diff --git a/CHANGELOG.md b/CHANGELOG.md index c9d3861b..40f4499a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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.4] - 2024-09-26 ### Changed - Implement fallback method for macOS Sequoia to detect when a window is destroyed, because of weird system problems when other third-party software is in use [#2431](https://github.com/koekeishiya/yabai/issues/2431) @@ -695,7 +697,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.3...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.4...HEAD +[7.1.4]: https://github.com/koekeishiya/yabai/compare/v7.1.3...v7.1.4 [7.1.3]: https://github.com/koekeishiya/yabai/compare/v7.1.2...v7.1.3 [7.1.2]: https://github.com/koekeishiya/yabai/compare/v7.1.1...v7.1.2 [7.1.1]: https://github.com/koekeishiya/yabai/compare/v7.1.0...v7.1.1 diff --git a/scripts/install.sh b/scripts/install.sh index 8380f773..b2a464c0 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,8 +57,8 @@ fi AUTHOR="koekeishiya" NAME="yabai" -VERSION="7.1.3" -EXPECTED_HASH="7aaee751bfdaf1f8d78b2cbeb51980afe82fd4960d081e4c623b9a9422fa25a5" +VERSION="7.1.4" +EXPECTED_HASH="c40a9567a2cda93c79a86d87c60d2a3d2221665d3e0107a9242f6357176df510" TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer" mkdir $TMP_DIR diff --git a/src/yabai.c b/src/yabai.c index 248ee8b9..31a5944e 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -22,7 +22,7 @@ #define MAJOR 7 #define MINOR 1 -#define PATCH 3 +#define PATCH 4 struct signal *g_signal_event[SIGNAL_TYPE_COUNT]; struct process_manager g_process_manager;