diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d366e2a..a59b00a6 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] + +## [1.1.0] - 2019-07-14 ### Added - Make loading scripting-addition more robust - validating version and functionality [#108](https://github.com/koekeishiya/yabai/issues/108) - Merge options for query constraints with command selectors to have a unified method for addressing displays, spaces, and windows, @@ -55,7 +57,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/v1.0.6...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/koekeishiya/yabai/compare/v1.0.6...v1.1.0 [1.0.6]: https://github.com/koekeishiya/yabai/compare/v1.0.5...v1.0.6 [1.0.5]: https://github.com/koekeishiya/yabai/compare/v1.0.4...v1.0.5 [1.0.4]: https://github.com/koekeishiya/yabai/compare/v1.0.3...v1.0.4 diff --git a/src/yabai.c b/src/yabai.c index 7b48cde8..0c6c50c6 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -19,8 +19,8 @@ #define SCRPT_ADD_LOAD_OPT "--load-sa" #define MAJOR 1 -#define MINOR 0 -#define PATCH 6 +#define MINOR 1 +#define PATCH 0 #define CONNECTION_CALLBACK(name) void name(uint32_t type, void *data, size_t data_length, void *context, int cid) typedef CONNECTION_CALLBACK(connection_callback);