diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b870c5e6..0db4c771 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.2" + ".": "1.0.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a8cb96b..2bfb4a2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.3](https://github.com/catppuccin/gtk/compare/v1.0.2...v1.0.3) (2024-05-27) + + +### Bug Fixes + +* alt tab menu ([#209](https://github.com/catppuccin/gtk/issues/209)) ([cae57c8](https://github.com/catppuccin/gtk/commit/cae57c80f81fd1cc40fab2655109b09fa97103b9)) + ## [1.0.2](https://github.com/catppuccin/gtk/compare/v1.0.1...v1.0.2) (2024-05-27) diff --git a/README.md b/README.md index ca19f128..0e1a795c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ python3 install.py dest: /home//.local/share/themes link: False - remote_url: https://github.com/catppuccin/gtk/releases/download/v1.0.2/catppuccin-mocha-blue-standard+default.zip + remote_url: https://github.com/catppuccin/gtk/releases/download/v1.0.3/catppuccin-mocha-blue-standard+default.zip [catppuccin-gtk] [INFO] - Starting download... [catppuccin-gtk] [INFO] - Response status: 200 [catppuccin-gtk] [INFO] - Download finished, zip is valid @@ -112,7 +112,7 @@ cd ~/.local/share/themes export ROOT_URL="https://https://github.com/catppuccin/gtk/releases/download" # Change to the tag you want to download -export RELEASE="v1.0.2" +export RELEASE="v1.0.3" # Change to suite your flavor / accent combination export FLAVOR="mocha" diff --git a/install.py b/install.py index d642cd33..7ae72aa9 100644 --- a/install.py +++ b/install.py @@ -94,7 +94,7 @@ def parse_args(): def build_release_url(ctx: InstallContext) -> str: repo_root = "https://github.com/catppuccin/gtk/releases/download" - release = "v1.0.2" # x-release-please-version + release = "v1.0.3" # x-release-please-version zip_name = f"catppuccin-{ctx.flavor}-{ctx.accent}-standard+default.zip" return f"{repo_root}/{release}/{zip_name}"