From 71fa53d4ea199c4f3711f341c00f52c58700b647 Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Fri, 13 Nov 2020 00:41:12 +0100 Subject: [PATCH] v3.3.2 --- CHANGELOG.md | 7 ++++++- src/yabai.c | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aaff567..d86d1c3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [3.3.2] - 2020-11-13 +### Changed +- Focusing a space incorrectly returned a non-zero exit code even when the operation succeeded [#181](https://github.com/koekeishiya/yabai/issues/181) + ## [3.3.1] - 2020-11-13 ### Changed - New self-signed certificate used to sign the released binaries. You will have to re-enable accessibility permissions after this install. @@ -307,7 +311,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Added - First official release -[Unreleased]: https://github.com/koekeishiya/yabai/compare/v3.3.1...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v3.3.2...HEAD +[3.3.2]: https://github.com/koekeishiya/yabai/compare/v3.3.1...v3.3.2 [3.3.1]: https://github.com/koekeishiya/yabai/compare/v3.3.0...v3.3.1 [3.3.0]: https://github.com/koekeishiya/yabai/compare/v3.2.1...v3.3.0 [3.2.1]: https://github.com/koekeishiya/yabai/compare/v3.2.0...v3.2.1 diff --git a/src/yabai.c b/src/yabai.c index f1f3067a..9ba0a992 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -20,7 +20,7 @@ #define MAJOR 3 #define MINOR 3 -#define PATCH 1 +#define PATCH 2 #define CONNECTION_CALLBACK(name) void name(uint32_t type, void *data, size_t data_length, void *context, int cid) typedef CONNECTION_CALLBACK(connection_callback);