diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 969d3dbf..48fbed91 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.0" + ".": "2.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6950d637..9d17a8aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.1.1](https://github.com/catppuccin/tmux/compare/v2.1.0...v2.1.1) (2024-11-17) + + +### Fixed + +* escape the TPM environment variable in the kube status line module ([#434](https://github.com/catppuccin/tmux/issues/434)) ([eb78ade](https://github.com/catppuccin/tmux/commit/eb78ade9dc1f6cd8ba654572f51ddcae3c6e7fd7)) +* specify the color for right separator of the status modules to be the same as text bg color ([#429](https://github.com/catppuccin/tmux/issues/429)) ([0e66dee](https://github.com/catppuccin/tmux/commit/0e66dee11ee396824668d4db863f1873e9e9243f)) + + +### Documentation + +* add possible values for window_flags ([#417](https://github.com/catppuccin/tmux/issues/417)) ([c8a2d1a](https://github.com/catppuccin/tmux/commit/c8a2d1ae9649aa904960bef1516ea2ff9a3e6ad0)) +* **custom-status:** fix typo `catpuccin` -> `catppuccin` ([#424](https://github.com/catppuccin/tmux/issues/424)) ([aaf9120](https://github.com/catppuccin/tmux/commit/aaf9120f769a34e5491b3ee7f885c8c347f2f663)) + ## [2.1.0](https://github.com/catppuccin/tmux/compare/v2.0.0...v2.1.0) (2024-10-25) diff --git a/README.md b/README.md index bc133c83..bccde83c 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,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.0 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux + git clone -b v2.1.1 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux ``` 1. Add the following line to your `tmux.conf` file: @@ -79,7 +79,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.0' # See https://github.com/catppuccin/tmux/tags for additional tags + set -g @plugin 'catppuccin/tmux#v2.1.1' # 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 73f63e21..6bbe9b47 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.0 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux +git clone -b v2.1.1 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux ```