diff --git a/CHANGELOG.md b/CHANGELOG.md index 143d2c9c..ebea40f1 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] + +## [2.2.2] - 2020-01-20 ### Changed - Fix use after free.. [#375](https://github.com/koekeishiya/yabai/issues/375) @@ -165,7 +167,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/v2.2.1...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v2.2.2...HEAD +[2.2.2]: https://github.com/koekeishiya/yabai/compare/v2.2.1...v2.2.2 [2.2.1]: https://github.com/koekeishiya/yabai/compare/v2.2.0...v2.2.1 [2.2.0]: https://github.com/koekeishiya/yabai/compare/v2.1.3...v2.2.0 [2.1.3]: https://github.com/koekeishiya/yabai/compare/v2.1.2...v2.1.3 diff --git a/src/yabai.c b/src/yabai.c index 4c0eae31..18491b0b 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -20,7 +20,7 @@ #define MAJOR 2 #define MINOR 2 -#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);