From 23d84c5bee23376432f28f7d07693d0efb49c5df Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Wed, 13 Mar 2024 20:28:25 +0100 Subject: [PATCH] v7.0.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 a032739c..63ded783 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.0.1] - 2024-03-13 ### Changed - Fix mouse_action resize throttling issue caused by friggin Apple event timestep garbage [#2160](https://github.com/koekeishiya/yabai/issues/2160) @@ -638,7 +640,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.0.0...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.0.1...HEAD +[7.0.1]: https://github.com/koekeishiya/yabai/compare/v7.0.0...v7.0.1 [7.0.0]: https://github.com/koekeishiya/yabai/compare/v6.0.15...v7.0.0 [6.0.15]: https://github.com/koekeishiya/yabai/compare/v6.0.14...v6.0.15 [6.0.14]: https://github.com/koekeishiya/yabai/compare/v6.0.13...v6.0.14 diff --git a/scripts/install.sh b/scripts/install.sh index e8571775..9081f79b 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,8 +57,8 @@ fi AUTHOR="koekeishiya" NAME="yabai" -VERSION="7.0.0" -EXPECTED_HASH="cf5832ffe9c7f57723818ac71216b252f7fd2907b3a5248fbcbebcefd50ee2b1" +VERSION="7.0.1" +EXPECTED_HASH="442129de85cab1bcfdc28c80ace174bed46b7cf38d9d0633ab1ecee59cd6bb35" TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer" mkdir $TMP_DIR diff --git a/src/yabai.c b/src/yabai.c index fb4ecc9f..5d023ff0 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -22,7 +22,7 @@ #define MAJOR 7 #define MINOR 0 -#define PATCH 0 +#define PATCH 1 struct signal *g_signal_event[SIGNAL_TYPE_COUNT]; struct process_manager g_process_manager;