From b3bf65a64049466af24e376423cfdfd8996d9282 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Sep 2026 11:51:30 +0000 Subject: [PATCH 1/2] chore(main): release 0.10.3 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a168f9a..3462cc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.3](https://github.com/Project-Colony/Colony/compare/v0.10.2...v0.10.3) (2026-09-02) + + +### Miscellaneous Chores + +* release 0.10.3 ([#81](https://github.com/Project-Colony/Colony/issues/81)) ([19cebfa](https://github.com/Project-Colony/Colony/commit/19cebfa8106a7b818a76e183b5826f96fe8072cc)) + ## [0.10.2](https://github.com/Project-Colony/Colony/compare/v0.10.1...v0.10.2) (2026-09-02) diff --git a/Cargo.lock b/Cargo.lock index 7c765e0..e5fba6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -538,7 +538,7 @@ dependencies = [ [[package]] name = "colony" -version = "0.10.2" +version = "0.10.3" dependencies = [ "anyhow", "base64 0.23.1", diff --git a/Cargo.toml b/Cargo.toml index ea41587..2c8164b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "colony" -version = "0.10.2" +version = "0.10.3" edition = "2021" license = "GPL-3.0-or-later" # The real floor, and it is enforced by CI (see .github/workflows/ci.yml). From c8241dc4bb312f5f8861a0079824c114a8f7ab30 Mon Sep 17 00:00:00 2001 From: MotherSphere Date: Wed, 2 Sep 2026 13:52:44 +0200 Subject: [PATCH 2/2] docs(changelog): say what 0.10.3 actually fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release-please derived the entry from the commits it could see, and the only one was the empty Release-As commit — so the changelog read "release 0.10.3" and told a user nothing about whether to update. The three fixes it carries all arrived through the colony-ui 0.1.5 bump in #80, whose subject was `chore(deps)` and therefore invisible to the generator. Written out here rather than left as a chore line. --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3462cc9..8aad70b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ ## [0.10.3](https://github.com/Project-Colony/Colony/compare/v0.10.2...v0.10.3) (2026-09-02) +### Bug Fixes + +* **ui:** the selected settings category is now legible on the green accent too. 0.10.2 made it take its foreground from `contrast_on`, but colony-ui 0.1.4 still chose that foreground from a luminance threshold which mis-sorts green — 2.34:1 where the other end gives 7.45:1. colony-ui 0.1.5 compares both ends, so every accent improves. ([#80](https://github.com/Project-Colony/Colony/issues/80)) +* **ui:** progress bars have a visible track on the Catppuccin themes. Their `bg_progress` was the same colour as the card behind it, so the track disappeared into it. ([#80](https://github.com/Project-Colony/Colony/issues/80)) +* **ui:** the accent picker's check mark is legible on every accent. It was drawn in white, which falls below 3:1 on yellow, amber, green and orange. ([#80](https://github.com/Project-Colony/Colony/issues/80)) + + ### Miscellaneous Chores * release 0.10.3 ([#81](https://github.com/Project-Colony/Colony/issues/81)) ([19cebfa](https://github.com/Project-Colony/Colony/commit/19cebfa8106a7b818a76e183b5826f96fe8072cc))