From 10d6f431ff5dd186ec3dbc0d22419a12cf268789 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Sun, 16 Oct 2016 11:17:56 -0400 Subject: [PATCH] Bump to version 1.3.0 Version 1.3.0 adds the following bugfixes and features: * Remove python-xlib dependency by getting the socket path from i3 binary. * The `Con::command_children()` method should work properly. * Make `socket.recv()` robust against interruptions. * Change `Con::mark` to `Con::marks` for the new ipc api (might be breaking). * Add `Con::window_rect` and `Con::deco_rect` properties. * Fix encoding problems in reading README. * `Con::workspace()` returns self if it is a workspace instead of None. * Fix the ipc-shutdown event. * The library is now installed as a directory instead of a single file. * Make the main loop work in multi-threaded environments. * Add Travis CI. * Add a test suite. * Add robustness against UTF-8 errors by replacing bad UTF-8. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3a55d13..73bb5f0 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='i3ipc', - version='1.2.0', + version='1.3.0', description='An improved Python library for i3wm extensions', long_description=long_description, url='https://github.com/acrisci/i3ipc-python',