Skip to content

Commit 868fe19

Browse files
committed
Release v1.7.0
1 parent 2a197c9 commit 868fe19

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGES

+30
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,36 @@ current
88
-------
99
- *Insert changes/features/fixes for next release here*
1010

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+
1141
tmuxp 1.7.0a4 (2021-01-06)
1242
--------------------------
1343
- Port click package fix from 1.6.4

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ skip-string-normalization = true
33

44
[tool.poetry]
55
name = "tmuxp"
6-
version = "1.7.0a3"
6+
version = "1.7.0"
77
description = "tmux session manager"
88
license = "MIT"
99
authors = ["Tony Narlock <[email protected]>"]

tmuxp/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = 'tmuxp'
22
__package_name__ = 'tmuxp'
3-
__version__ = '1.7.0a4'
3+
__version__ = '1.7.0'
44
__description__ = 'tmux session manager'
55
__email__ = '[email protected]'
66
__author__ = 'Tony Narlock'

0 commit comments

Comments
 (0)