From fab04e452d9b06d92468fe4dfd2cb334e0ebba45 Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Fri, 22 Mar 2024 16:36:11 +0100 Subject: [PATCH] v7.0.3 --- 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 a247c2d0..7bc632df 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.3] - 2024-03-22 ### Changed - Whitelist zathura process for management because it incorrectly identifies as a background-only process [#2168](https://github.com/koekeishiya/yabai/issues/2168) - Config should be executed if the exec-bit is set, but interpreted if it is not [#2169](https://github.com/koekeishiya/yabai/issues/2169) @@ -649,7 +651,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.2...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.0.3...HEAD +[7.0.3]: https://github.com/koekeishiya/yabai/compare/v7.0.2...v7.0.3 [7.0.2]: https://github.com/koekeishiya/yabai/compare/v7.0.1...v7.0.2 [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 diff --git a/scripts/install.sh b/scripts/install.sh index 0d712f6d..1e383b9f 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,8 +57,8 @@ fi AUTHOR="koekeishiya" NAME="yabai" -VERSION="7.0.2" -EXPECTED_HASH="7c95a47361213402653146c5c2e908daaa3f6134a32cc71fb2317b5f6dea461b" +VERSION="7.0.3" +EXPECTED_HASH="6fe869fa40272eab258e3c2d83b4725ae2974fa0f6d85be7a8490fa8b51918ab" TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer" mkdir $TMP_DIR diff --git a/src/yabai.c b/src/yabai.c index 1c5daddb..cceaba59 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -22,7 +22,7 @@ #define MAJOR 7 #define MINOR 0 -#define PATCH 2 +#define PATCH 3 struct signal *g_signal_event[SIGNAL_TYPE_COUNT]; struct process_manager g_process_manager;