From a1c37d26f5829e695079bb5fbf303574d31863ef Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Sat, 18 May 2024 13:21:18 +0200 Subject: [PATCH] v7.1.1 --- CHANGELOG.md | 5 ++++- scripts/install.sh | 4 ++-- src/yabai.c | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96080807..6108c11f 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.1] - 2024-05-18 ### Changed - Assigning a window to scratchpad using rules would incorrectly hide that window immediately [#2203](https://github.com/koekeishiya/yabai/issues/2203) - Moving windows to other spaces should once again work on macOS Sonoma 14.5 (and newer) [#2240](https://github.com/koekeishiya/yabai/issues/2240) @@ -676,7 +678,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.0...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.1...HEAD +[7.1.1]: https://github.com/koekeishiya/yabai/compare/v7.1.0...v7.1.1 [7.1.0]: https://github.com/koekeishiya/yabai/compare/v7.0.4...v7.1.0 [7.0.4]: https://github.com/koekeishiya/yabai/compare/v7.0.3...v7.0.4 [7.0.3]: https://github.com/koekeishiya/yabai/compare/v7.0.2...v7.0.3 diff --git a/scripts/install.sh b/scripts/install.sh index 1fe9aa47..4415151f 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,8 +57,8 @@ fi AUTHOR="koekeishiya" NAME="yabai" -VERSION="7.1.0" -EXPECTED_HASH="5ac6d6dd8e47a81bfbb42a788832fff65134805e4146817a59b23178b7112434" +VERSION="7.1.1" +EXPECTED_HASH="baac4fee13b8732651a00f5a70e1d63153e610642165c2111a62daaf71fec44f" TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer" mkdir $TMP_DIR diff --git a/src/yabai.c b/src/yabai.c index ee6a5351..6a3a7689 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -22,7 +22,7 @@ #define MAJOR 7 #define MINOR 1 -#define PATCH 0 +#define PATCH 1 struct signal *g_signal_event[SIGNAL_TYPE_COUNT]; struct process_manager g_process_manager;