diff --git a/CHANGELOG.md b/CHANGELOG.md index 690b86cc..0aaff567 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,11 @@ 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] + +## [3.3.1] - 2020-11-13 ### Changed -- Update scripting-addition to support macOS Big Sur 11.0 Build 20A5384c [#589](https://github.com/koekeishiya/yabai/issues/589) +- New self-signed certificate used to sign the released binaries. You will have to re-enable accessibility permissions after this install. +- Update scripting-addition to support macOS Big Sur 11.0.1 [#589](https://github.com/koekeishiya/yabai/issues/589) - Return a non-zero exit code when focusing a space fails due to an issue with the scripting-addition [#181](https://github.com/koekeishiya/yabai/issues/181) ## [3.3.0] - 2020-09-03 @@ -304,7 +307,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.0...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v3.3.1...HEAD +[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 [3.2.0]: https://github.com/koekeishiya/yabai/compare/v3.1.2...v3.2.0 diff --git a/src/yabai.c b/src/yabai.c index cde78db9..f1f3067a 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -20,7 +20,7 @@ #define MAJOR 3 #define MINOR 3 -#define PATCH 0 +#define PATCH 1 #define CONNECTION_CALLBACK(name) void name(uint32_t type, void *data, size_t data_length, void *context, int cid) typedef CONNECTION_CALLBACK(connection_callback);