diff --git a/CHANGELOG.md b/CHANGELOG.md index 83777ea..cd039d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to SearchMob Desktop are documented here. The version scheme ## [Unreleased] +## 26.06.07 — 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/pyproject.toml b/pyproject.toml index 68d81aa..5790efd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,10 @@ dependencies = [ "uvicorn[standard]>=0.34", "typer>=0.15", "rich>=14", - "cryptography>=45", + # Upper-bounded for the macOS universal2 package: cryptography 49.0.0 ships no x86_64 macOS + # wheel, which breaks Briefcase's Intel slice (the lock pins 48.0.0). Lift the cap once 49+ + # publishes x86_64 macOS wheels (or the macOS build drops the Intel slice). + "cryptography>=45,<49", "argon2-cffi>=24", "platformdirs>=4", "keyring>=25", @@ -109,7 +112,7 @@ follow_imports = "skip" [tool.briefcase] project_name = "SearchMob Desktop" bundle = "com.flintwave" -version = "26.06.06" +version = "26.06.07" url = "https://github.com/FlintWave/SearchMob-Desktop" author = "FlintWave" author_email = "flintwave@tuta.com" diff --git a/src/searchmob_desktop/version.py b/src/searchmob_desktop/version.py index 7916c16..527b3e4 100644 --- a/src/searchmob_desktop/version.py +++ b/src/searchmob_desktop/version.py @@ -3,4 +3,4 @@ # Ubuntu-style scheme matching the Android app: YY.MM.VV (two-digit year, # month, and per-month build). First desktop release is 26.05.00. Bump # manually each release; hatchling reads __version__ from this file. -__version__ = "26.06.06" +__version__ = "26.06.07"