diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 48fbed91..25d36ffa 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.1" + ".": "2.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d17a8aa..b3e578e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.1.2](https://github.com/catppuccin/tmux/compare/v2.1.1...v2.1.2) (2024-12-08) + + +### Fixed + +* improve uptime status sed script to report correct units for few uptime scenarios ([#437](https://github.com/catppuccin/tmux/issues/437)) ([31fc2bf](https://github.com/catppuccin/tmux/commit/31fc2bfb1123681dc06da613b944b85f81e4babd)) +* use current window separators for the current window format ([#443](https://github.com/catppuccin/tmux/issues/443)) ([2a6c45b](https://github.com/catppuccin/tmux/commit/2a6c45b7c0da1594de1105d6cef15e3e68981113)) + ## [2.1.1](https://github.com/catppuccin/tmux/compare/v2.1.0...v2.1.1) (2024-11-17) diff --git a/README.md b/README.md index bccde83c..9ec6b08b 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.1 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux + git clone -b v2.1.2 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.1' # See https://github.com/catppuccin/tmux/tags for additional tags + set -g @plugin 'catppuccin/tmux#v2.1.2' # 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 6bbe9b47..78ca0781 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.1 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux +git clone -b v2.1.2 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux ```