Skip to content

Commit b29b524

Browse files
Release 0.13
1 parent 203231a commit b29b524

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
CHANGELOG
22
=========
33

4+
0.13: 2016-10-16
5+
----------------
6+
7+
New features:
8+
- Added status-interval option.
9+
- Support for ANSI colors only.
10+
* Added --ansicolor option.
11+
* Check PROMPT_TOOLKIT_ANSI_COLORS_ONLY environment variable.
12+
- Added pane-status option for hiding the pane status bar.
13+
(Disabled by default.)
14+
- Expose shift+arrow keys for key bindings.
15+
16+
Performance improvements:
17+
- Only do datetime formatting if the string actually contains a '%'
18+
character.
19+
20+
Fixes:
21+
- Catch OSError in os.tcgetpgrp.
22+
- Clean up sockets, also in case of a crash.
23+
- Fix in process.py: don't call remove_reader when master is None.
24+
25+
426
0.12: 2016-08-03
527
----------------
628

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
setup(
1515
name='pymux',
1616
author='Jonathan Slenders',
17-
version='0.12',
17+
version='0.13',
1818
license='LICENSE',
1919
url='https://github.com/jonathanslenders/',
2020
description='Pure Python terminal multiplexer.',
2121
long_description=long_description,
2222
packages=find_packages('.'),
2323
install_requires = [
24-
'prompt_toolkit>=1.0.4,<1.1.0',
24+
'prompt_toolkit>=1.0.8,<1.1.0',
2525
'pyte>=0.5.1',
2626
'six>=1.9.0',
2727
'docopt>=0.6.2',

0 commit comments

Comments
 (0)