diff --git a/CHANGELOG.md b/CHANGELOG.md index efea565..c216511 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [1.9.2] - 2026-02-12 + +Feature: Options dialog sucks less +Bugix: Move tests to isolated memory DB +Bugfix: Mention case sensitivity +Bugfix: Stale header retention on settings page view +Bugfix: Non-isolated path writing +Bugfix: Nullable contact fields are now passed as real nulls +Bugfix: Look at all fields on message reconcile, not just text +Bugfix: Make mark-all-as-read atomic +Misc: Purge unused WS handlers from back when we did chans and contacts over WS, not API +Misc: Massive test and AGENTS.md overhauls and additions + ## [1.9.1] - 2026-02-10 Feature: Contacts and channels use keys, not names diff --git a/app/main.py b/app/main.py index aa82b62..a6a6035 100644 --- a/app/main.py +++ b/app/main.py @@ -62,7 +62,7 @@ async def lifespan(app: FastAPI): app = FastAPI( title="RemoteTerm for MeshCore API", description="API for interacting with MeshCore mesh radio networks", - version="0.1.0", + version="1.9.2", lifespan=lifespan, ) diff --git a/frontend/package.json b/frontend/package.json index 4846a10..58ab401 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "remoteterm-meshcore-frontend", "private": true, - "version": "1.9.1", + "version": "1.9.2", "type": "module", "scripts": { "dev": "vite", diff --git a/pyproject.toml b/pyproject.toml index b516d17..a8e57a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "remoteterm-meshcore" -version = "1.9.1" +version = "1.9.2" description = "RemoteTerm - Web interface for MeshCore radio mesh networks" readme = "README.md" requires-python = ">=3.10" diff --git a/uv.lock b/uv.lock index 5b24e4e..0807ca9 100644 --- a/uv.lock +++ b/uv.lock @@ -854,7 +854,7 @@ wheels = [ [[package]] name = "remoteterm-meshcore" -version = "1.9.1" +version = "1.9.2" source = { virtual = "." } dependencies = [ { name = "aiosqlite" },