From 7d9ef7c9f8e9020e797010238ec560d42c69c2bf Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Wed, 8 May 2019 20:55:45 -0400 Subject: [PATCH] Bump to version 1.7.1 See the CHANGELOG for more information. --- CHANGELOG.md | 12 ++++++++++++ setup.py | 5 ++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bd828c..c7f9368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## Version 1.7.1 + +Version 1.7.1 adds some bugfixes and features. + +* Add support to get socketpath from the `sway` binary (93a8f0c). +* Return empty list on commands that don't return a result (cf55812). +* Implement the `SHUTDOWN` event (d338889). +* Implement the autoreconnect feature (fa3a813). +* Make sending commands thread safe (e9fcefa). +* Add `title` attribute to `Con` class (34ea24e). +* Add `pid` attribute to `Con` class for sway (bd0224e). + ## Version 1.6.0 Version 1.6.0 adds the following bugfixes and features: diff --git a/setup.py b/setup.py index d4fc6b5..b50f5f6 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='i3ipc', - version='1.6.0', + version='1.7.1', description='An improved Python library for i3wm extensions', long_description=long_description, url='https://github.com/acrisci/i3ipc-python', @@ -25,6 +25,9 @@ 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], keywords='i3 i3wm extensions add-ons', packages=['i3ipc'],