Skip to content

Commit 7d9ef7c

Browse files
author
Tony Crisci
committed
Bump to version 1.7.1
See the CHANGELOG for more information.
1 parent cf55812 commit 7d9ef7c

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## Version 1.7.1
4+
5+
Version 1.7.1 adds some bugfixes and features.
6+
7+
* Add support to get socketpath from the `sway` binary (93a8f0c).
8+
* Return empty list on commands that don't return a result (cf55812).
9+
* Implement the `SHUTDOWN` event (d338889).
10+
* Implement the autoreconnect feature (fa3a813).
11+
* Make sending commands thread safe (e9fcefa).
12+
* Add `title` attribute to `Con` class (34ea24e).
13+
* Add `pid` attribute to `Con` class for sway (bd0224e).
14+
315
## Version 1.6.0
416

517
Version 1.6.0 adds the following bugfixes and features:

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='i3ipc',
12-
version='1.6.0',
12+
version='1.7.1',
1313
description='An improved Python library for i3wm extensions',
1414
long_description=long_description,
1515
url='https://github.com/acrisci/i3ipc-python',
@@ -25,6 +25,9 @@
2525
'Programming Language :: Python :: 3.2',
2626
'Programming Language :: Python :: 3.3',
2727
'Programming Language :: Python :: 3.4',
28+
'Programming Language :: Python :: 3.5',
29+
'Programming Language :: Python :: 3.6',
30+
'Programming Language :: Python :: 3.7',
2831
],
2932
keywords='i3 i3wm extensions add-ons',
3033
packages=['i3ipc'],

0 commit comments

Comments
 (0)