diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 82493116..38dc7f3f 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.3" + ".": "2.1.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b54cba8..0c73e312 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [2.1.4](https://github.com/catppuccin/tmux/compare/v2.1.3...v2.1.4) (2025-09-28) + + +### Fixed + +* change tmux plugin kube module uses ([#531](https://github.com/catppuccin/tmux/issues/531)) ([ef94979](https://github.com/catppuccin/tmux/commit/ef9497982032a9494f4bf3ad276fba58b61bd7e6)) +* **theme:** Cleanup duplicate palette theme color ([#562](https://github.com/catppuccin/tmux/issues/562)) ([efeb958](https://github.com/catppuccin/tmux/commit/efeb9583cec0bc7486caedbc309df0ea9505d332)) + + +### Documentation + +* clarify custom-status should be added before plugin is loaded ([#551](https://github.com/catppuccin/tmux/issues/551)) ([8b0b915](https://github.com/catppuccin/tmux/commit/8b0b9150f9d7dee2a4b70cdb50876ba7fd6d674a)) +* status-line left/right mixup ([#542](https://github.com/catppuccin/tmux/issues/542)) ([9d21d7c](https://github.com/catppuccin/tmux/commit/9d21d7ccd50df82bd732be2850ce2798e78b6391)) +* stop recommending `-o` ([#524](https://github.com/catppuccin/tmux/issues/524)) ([14a546f](https://github.com/catppuccin/tmux/commit/14a546fb64dc1141e5d02bac2185d8c1fd530d6a)) + ## [2.1.3](https://github.com/catppuccin/tmux/compare/v2.1.2...v2.1.3) (2025-03-23) diff --git a/README.md b/README.md index 50eaaaa5..f469f0f6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ This method is recommended as TPM has some issues with name conflicts. ```bash mkdir -p ~/.config/tmux/plugins/catppuccin - git clone -b v2.1.3 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux + git clone -b v2.1.4 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux ``` 1. Add the following line to your `tmux.conf` file: @@ -81,7 +81,7 @@ Check out what to do next in the "[Getting Started Guide](./docs/tutorials/01-ge 1. Add the Catppuccin plugin: ```bash - set -g @plugin 'catppuccin/tmux#v2.1.3' # See https://github.com/catppuccin/tmux/tags for additional tags + set -g @plugin 'catppuccin/tmux#v2.1.4' # See https://github.com/catppuccin/tmux/tags for additional tags # ...alongside set -g @plugin 'tmux-plugins/tpm' ``` diff --git a/docs/tutorials/01-getting-started.md b/docs/tutorials/01-getting-started.md index beb61a99..6b742b67 100644 --- a/docs/tutorials/01-getting-started.md +++ b/docs/tutorials/01-getting-started.md @@ -5,7 +5,7 @@ Want to install the color scheme and make tmux pastel? Great! Here's how. ```bash mkdir -p ~/.config/tmux/plugins/catppuccin -git clone -b v2.1.3 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux +git clone -b v2.1.4 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux ```