Skip to content

Commit b2e4e42

Browse files
committed
v0.1.1
1 parent 639b69e commit b2e4e42

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

CHANGES

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,28 @@ Changelog
44

55
Here you can find the recent changes to tmuxp.
66

7+
0.1.1
8+
-----
9+
10+
- [builder] [freezer] [bug] Fix `Issue #32`_ where special characters
11+
caused unicode caused unexpected outcomes loading and freezing sessions.
12+
13+
.. _Issue #32: https://github.com/tony/tmuxp/issues/32
14+
715
0.1
816
---
917

1018
- [cli] fix duplicate print out of filename with using ``tmuxp load .``.
1119
- version to 0.1. No ``--pre`` needed. Future versions will not use rc.
1220

1321
0.1-rc8
14-
-------
22+
"""""""
1523

1624
- [internal] ``unicode_literals``
1725
- [internal] Move py2/py3 compliancy code to ``_compat``.
1826

1927
0.1-rc7
20-
-------
28+
"""""""
2129

2230
- [config] [tests] [bug] `Issue #33`_ bug. Partial rewrite of
2331
:meth:`config.expand`.
@@ -26,15 +34,15 @@ Here you can find the recent changes to tmuxp.
2634
.. _Issue #33: https://github.com/tony/tmuxp/issues/33
2735

2836
0.1-rc6
29-
-------
37+
"""""""
3038

3139
- [config] [tests] [examples] Add `Issue #31`_ from stratoukos -
3240
``window_index`` option, and add example.
3341

3442
.. _Issue #31: https://github.com/tony/tmuxp/issues/31
3543

3644
0.1-rc5
37-
-------
45+
"""""""
3846

3947
- [tests] [config] [builder] Fix `Issue #28`_ - shell_command_before in
4048
session scope of config causing duplication. New test.
@@ -49,13 +57,13 @@ Here you can find the recent changes to tmuxp.
4957
.. _Issue #29: https://github.com/tony/tmuxp/issues/29
5058

5159
0.1-rc4
52-
-------
60+
"""""""
5361

5462
- [bug] fix bug were ``focus: true`` would not launch sessions when using
5563
``$ tmuxp load`` in a tmux session.
5664

5765
0.1-rc3
58-
-------
66+
"""""""
5967

6068
- [bug] [tests] `Issue #25`_ - ``focus: true`` not working in panes. Add
6169
tests for focusing panes in config.
@@ -65,7 +73,7 @@ Here you can find the recent changes to tmuxp.
6573
.. _Issue #25: https://github.com/tony/tmuxp/issues/25
6674

6775
0.1-rc2
68-
-------
76+
"""""""
6977

7078
- [cli] [tests] - fix `Issue #23`_ where workspace would not build with
7179
pane-base-index set to 1. Update tests to fix if ``pane-base-index`` is
@@ -76,7 +84,7 @@ Here you can find the recent changes to tmuxp.
7684
.. _Issue #23: https://github.com/tony/tmuxp/issues/23
7785

7886
0.1-rc1
79-
-------
87+
"""""""
8088

8189
- [internal] `pep8`_ and `pep257`_ in unit tests.
8290
- Changelog will now be updated on a version basis, use `pep440`_

tmuxp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from __future__ import absolute_import, division, print_function, \
1212
with_statement, unicode_literals
1313

14-
__version__ = '0.1.0'
14+
__version__ = '0.1.1'
1515

1616
from .session import Session
1717
from .server import Server

0 commit comments

Comments
 (0)