Skip to content

Commit 5498f02

Browse files
committed
v0.1.0
1 parent b3e336a commit 5498f02

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Changelog
44

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

7+
0.1
8+
---
9+
10+
- [cli] fix duplicate print out of filename with using ``tmuxp load .``.
11+
- version to 0.1. No ``--pre`` needed. Future versions will not use rc.
12+
713
0.1-rc8
814
-------
915

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.0rc8'
14+
__version__ = '0.1.0'
1515

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

tmuxp/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,6 @@ def command_load(args):
412412
if '.' == args.config:
413413
if config.in_cwd():
414414
configfile = config.in_cwd()[0]
415-
print(configfile)
416415
else:
417416
sys.exit('No tmuxp configs found in current directory.')
418417
else:

0 commit comments

Comments
 (0)