diff --git a/CHANGELOG.md b/CHANGELOG.md index f15cdb3e..fd9be2dc 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] + +## [3.3.0] - 2020-09-03 ### Added - Implemented support for stacking multiple windows in the same region (bsp node) [#203](https://github.com/koekeishiya/yabai/issues/203) - Implemented a fullscreen layout, using stacking as its backing mechanism [#337](https://github.com/koekeishiya/yabai/issues/337) @@ -299,7 +301,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.2.1...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v3.3.0...HEAD +[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 [3.1.2]: https://github.com/koekeishiya/yabai/compare/v3.1.1...v3.1.2 diff --git a/src/yabai.c b/src/yabai.c index a565af4b..20a371d7 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -19,8 +19,8 @@ #define SCRPT_ADD_LOAD_OPT "--load-sa" #define MAJOR 3 -#define MINOR 2 -#define PATCH 1 +#define MINOR 3 +#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);