From e57fda1bf3f439040138180739677c8fb368c31a Mon Sep 17 00:00:00 2001 From: FlintWave Date: Fri, 19 Jun 2026 00:10:01 -0700 Subject: [PATCH] chore(release): 26.06.06 Bumps to 26.06.06 to ship the navigational result-ranking fix (official site on page one): the freshness sort now scales the real relevance score, and a curated allowlist keeps well-known destinations out of the AI-slop filter. versionCode derives from appVersionName (260606). Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 ++ app/build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d7d347..12431e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ versioning (`YY.MM.VV`). ## [Unreleased] +## 26.06.06 — 2026-06-19 + ### Fixed - **Searching for a site or tool by name now keeps its official page on the first screen.** Two ranking steps could bury the official site even after it had been ranked first: the freshness diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e59023a..9e16a1f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -51,7 +51,7 @@ val hasReleaseSigning = // date versioning: YY.MM.VV (two-digit year, month, and per-month build), set manually each release. // `versionCode` is derived as (YY*10000 + MM*100 + VV) so it always increases monotonically with the // date (e.g. 26.05.00 -> 260500, 26.06.00 -> 260600, 27.01.00 -> 270100). Bump this on each release. -val appVersionName = "26.06.05" +val appVersionName = "26.06.06" val appVersionCode = appVersionName .split("-")[0]