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]