diff --git a/CHANGES b/CHANGES index 059bdc9d20..1d84f2aa54 100644 --- a/CHANGES +++ b/CHANGES @@ -15,10 +15,26 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force // Usage: tmuxp@next load yoursession ``` -## tmuxp 1.14.x (unreleased) +## tmuxp 1.15.x (unreleased) - _Insert changes/features/fixes for next release here_ +## tmuxp 1.14.0 (2022-09-11) + +**Maintenance release, no features or fixes** + +There will be several of these releases as infrastructure and APIs are upgraded +to facilitate fixes for layout issues and general contributions. + +### Development + +- libtmux bumped to v0.15.1 + + This includes a major retooling underneath, including `src/` layout and + testing of `doctest` in documentation. + +[v0.15.1]: https://github.com/tmux-python/libtmux/blob/v0.15.1/CHANGES#libtmux-0151-2022-09-11 + ### Documentation - Render changelog in [`linkify_issues`] (#812) diff --git a/pyproject.toml b/pyproject.toml index f812cc70b9..2b08763ed4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.14.0a1" +version = "1.14.0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/tmuxp/__about__.py b/tmuxp/__about__.py index 40dec9cdf7..f64801ca69 100644 --- a/tmuxp/__about__.py +++ b/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.14.0a1" +__version__ = "1.14.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"