Skip to content

Commit 9555298

Browse files
committed
Tag v1.8.0: Drop python 2.7 and 3.5
1 parent 2b5fefd commit 9555298

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGES

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ Here you can find the recent changes to tmuxp
66

77
current
88
-------
9+
- *Insert changes/features/fixes for next release here*
10+
11+
tmuxp 1.8.0 (2021-06-14)
12+
------------------------
913
- :issue:`662` CI: Only update docs when changed
10-
- :issue:`665` Support for passing tmux config file (``-f``), thanks
11-
@jfindlay! Fixes :issue:`654`
1214
- :issue:`666` CI: Move test plugin packages from pyproject.toml to
1315
pytest fixtures. Fixes :issue:`658`
1416
- :issue:`661`
1517
- Bump minimum version 3.5 -> 3.6
1618
- Drop python 2.7 support
1719
- Modernize syntax (remove ``__future__`` and modesets)
1820
- Update black to 21.6b0
19-
- *Insert changes/features/fixes for next release here*
2021

2122
tmuxp 1.7.2 (2021-02-03)
2223
------------------------

pyproject.toml

Lines changed: 2 additions & 1 deletion
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.0"
6+
version = "1.8.0"
77
description = "tmux session manager"
88
license = "MIT"
99
authors = ["Tony Narlock <tony@git-pull.com>"]
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.6",
1919
"Programming Language :: Python :: 3.7",
2020
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
2122
"Programming Language :: Python :: Implementation :: PyPy",
2223
"Topic :: Utilities",
2324
"Topic :: System :: Shells"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"Programming Language :: Python :: 3.6",
5555
"Programming Language :: Python :: 3.7",
5656
"Programming Language :: Python :: 3.8",
57+
"Programming Language :: Python :: 3.9",
5758
"Programming Language :: Python :: Implementation :: PyPy",
5859
"Topic :: Utilities",
5960
"Topic :: System :: Shells",

tmuxp/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = 'tmuxp'
22
__package_name__ = 'tmuxp'
3-
__version__ = '1.7.0'
3+
__version__ = '1.8.0'
44
__description__ = 'tmux session manager'
55
__email__ = 'tony@git-pull.com'
66
__author__ = 'Tony Narlock'

0 commit comments

Comments
 (0)