diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 0db4c771..895bf0e3 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.3" + ".": "2.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c08d94..86ac40d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [2.0.0](https://github.com/catppuccin/tmux/compare/v1.0.3...v2.0.0) (2024-10-21) + + +### ⚠ BREAKING CHANGES + +* rebalance the colors used, and follow the styleguide +* change how windows are styled +* change how status modules are styled +* rebalance colors, adhere to style guide & overhaul docs ([#372](https://github.com/catppuccin/tmux/issues/372)) + +### Features + +* change how status modules are styled ([79284da](https://github.com/catppuccin/tmux/commit/79284da665bf5d39d304e23df4165c8ac37f9b7a)) +* rebalance colors, adhere to style guide & overhaul docs ([#372](https://github.com/catppuccin/tmux/issues/372)) ([79284da](https://github.com/catppuccin/tmux/commit/79284da665bf5d39d304e23df4165c8ac37f9b7a)) +* rebalance the colors used, and follow the styleguide ([79284da](https://github.com/catppuccin/tmux/commit/79284da665bf5d39d304e23df4165c8ac37f9b7a)) +* rebalance the status module colors for cpu and battery ([79284da](https://github.com/catppuccin/tmux/commit/79284da665bf5d39d304e23df4165c8ac37f9b7a)) +* replace `_ctp_status_bg` with unified `_ctp_module_bg_color` in module configuration ([a4d4ad0](https://github.com/catppuccin/tmux/commit/a4d4ad09cc8b5c9338cbd4510450d0ae997a7710)) + + +### Bug Fixes + +* **tests:** add tests for window styling ([79284da](https://github.com/catppuccin/tmux/commit/79284da665bf5d39d304e23df4165c8ac37f9b7a)) +* use ubuntu-24.04 in ci ([#388](https://github.com/catppuccin/tmux/issues/388)) ([3b0e0a6](https://github.com/catppuccin/tmux/commit/3b0e0a6f0741bf09149f23620516decd7b5f5ba5)) + + +### Code Refactoring + +* change how windows are styled ([79284da](https://github.com/catppuccin/tmux/commit/79284da665bf5d39d304e23df4165c8ac37f9b7a)) + ## [1.0.3](https://github.com/catppuccin/tmux/compare/v1.0.2...v1.0.3) (2024-10-16) diff --git a/README.md b/README.md index 307e690e..e8490113 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 v1.0.3 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux + git clone -b v2.0.0 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#v1.0.3' # See https://github.com/catppuccin/tmux/tags for additional tags + set -g @plugin 'catppuccin/tmux#v2.0.0' # 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 6d4d1e3d..415b3c8a 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 v1.0.3 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux +git clone -b v2.0.0 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux ```