Skip to content

Commit 29d89c2

Browse files
committed
Tag v0.10.0
1 parent d5674c5 commit 29d89c2

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ Here you can find the recent changes to libtmux
55
## current
66

77
- _Insert changes/features/fixes for next release here_
8+
9+
## libtmux 0.10.0 (2021-06-16)
10+
- #321: Convert to markdown
811
- {issue}`271`: Fix {}`select_window()` by providing the session ID as
912
argument to {}`-t`. Thanks @Flowdalic
1013
- Drop python 3.5 support

libtmux/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = 'libtmux'
22
__package_name__ = 'libtmux'
3-
__version__ = '0.9.0'
3+
__version__ = '0.10.0'
44
__description__ = 'scripting library / orm for tmux'
55
__email__ = '[email protected]'
66
__author__ = 'Tony Narlock'

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 = "libtmux"
6-
version = "0.9.0"
6+
version = "0.10.0"
77
description = "scripting library / orm for tmux"
88
license = "MIT"
99
authors = ["Tony Narlock <[email protected]>"]

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
author_email=about['__email__'],
4141
description=about['__description__'],
4242
long_description=readme,
43+
long_description_content_type="text/markdown",
4344
packages=['libtmux'],
4445
include_package_data=True,
4546
tests_require=tests_reqs,

0 commit comments

Comments
 (0)