From 3d3638a6c9391c738adb8943d84c9b3d4d3d9725 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Tue, 15 Jul 2014 20:59:15 -0400 Subject: [PATCH] Bump to version 0.4.0 --- CHANGELOG.md | 9 +++++++++ configure.ac | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4e94dc..3376887 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog - i3ipc-GLib +## Version 0.4.0 + +This release adds some missing properties on the container and an abstraction to the GLib main loop. + +* Add the con "mark" property +* Add the con "fullscreen_mode" property +* Implement con method `find_marked` - finds containers that have a mark that matches a pattern +* Add the connection `main` and `main_quit` methods for scripting + ## Version 0.3.1 This minor release includes bugfixes and compatability fixes with the latest stable version of i3. Some new methods and a property on the con object have been added as well. diff --git a/configure.ac b/configure.ac index 70a8c48..4234044 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([i3ipc_major_version], [0]) -m4_define([i3ipc_minor_version], [3]) -m4_define([i3ipc_micro_version], [1]) +m4_define([i3ipc_minor_version], [4]) +m4_define([i3ipc_micro_version], [0]) m4_define([i3ipc_version], [i3ipc_major_version.i3ipc_minor_version.i3ipc_micro_version])