File tree 3 files changed +32
-2
lines changed
3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 8
8
-------
9
9
- *Insert changes/features/fixes for next release here *
10
10
11
+ tmuxp 1.7.0 (2021-01-09)
12
+ ------------------------
13
+
14
+ This will be the last Python 2.7 release of tmuxp. Bug fixes for python
15
+ 2.7 will live in the `1.7.x branch `_.
16
+
17
+ - :issue: `530 ` New feature: Plugin system
18
+
19
+ - Add plugin system for user customization of tmuxp
20
+ - Add tests for the plugin system
21
+ - Update existing tests for the plugin system
22
+ - Add the plugin interface to the tmuxp package
23
+ - Add in depth documentation for the plugin system
24
+
25
+ Thank you @joseph-flinn!
26
+ - :issue: `656 ` New feature: Ability to append windows to a session
27
+
28
+ ``tmuxp load -a configfile `` will append a configuration to your current
29
+ tmux session.
30
+
31
+ Thank you @will-ockmore!
32
+ - :issue: `647 ` Improvement: Logging to file:
33
+
34
+ ``tmuxp load <filename> --log-level outputfile.log ``
35
+ - :issue: `643 ` New command: Debug information
36
+
37
+ Port ``tmuxp debug-info `` from via v1.6.2
38
+
39
+ .. _1.7.x branch : https://github.com/tmux-python/tmuxp/tree/v1.7.x
40
+
11
41
tmuxp 1.7.0a4 (2021-01-06)
12
42
--------------------------
13
43
- Port click package fix from 1.6.4
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ skip-string-normalization = true
3
3
4
4
[tool .poetry ]
5
5
name = " tmuxp"
6
- version = " 1.7.0a3 "
6
+ version = " 1.7.0 "
7
7
description = " tmux session manager"
8
8
license = " MIT"
9
9
authors = [
" Tony Narlock <[email protected] >" ]
Original file line number Diff line number Diff line change 1
1
__title__ = 'tmuxp'
2
2
__package_name__ = 'tmuxp'
3
- __version__ = '1.7.0a4 '
3
+ __version__ = '1.7.0 '
4
4
__description__ = 'tmux session manager'
5
5
6
6
__author__ = 'Tony Narlock'
You can’t perform that action at this time.
0 commit comments