diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ed83f5..58ac3292 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.2] - 2024-08-10 ### Changed - Allow *window_animation_duration* to be set to `0.0` without requesting *Screen Capture* permissions [#2378](https://github.com/koekeishiya/yabai/issues/2378) - Add new *window --toggle* option `windowed-fullscreen` to fullscreen a window, ignoring all configured padding for both managed and unmanaged windows [#2221](https://github.com/koekeishiya/yabai/issues/2221) @@ -684,7 +686,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.1...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.2...HEAD +[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 [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 diff --git a/scripts/install.sh b/scripts/install.sh index 4415151f..41a89176 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,8 +57,8 @@ fi AUTHOR="koekeishiya" NAME="yabai" -VERSION="7.1.1" -EXPECTED_HASH="baac4fee13b8732651a00f5a70e1d63153e610642165c2111a62daaf71fec44f" +VERSION="7.1.2" +EXPECTED_HASH="448628e4896a6dfb3892a60a4abced60b02a82f94f5ea6847a7567309bd35839" TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer" mkdir $TMP_DIR diff --git a/src/yabai.c b/src/yabai.c index c837c213..217c0eae 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -22,7 +22,7 @@ #define MAJOR 7 #define MINOR 1 -#define PATCH 1 +#define PATCH 2 struct signal *g_signal_event[SIGNAL_TYPE_COUNT]; struct process_manager g_process_manager;