diff --git a/CHANGELOG.md b/CHANGELOG.md index 14b0ce6..34b5c3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ for how releases are cut and published. ## [Unreleased] +## [0.2.3] — 2026-06-29 + +### Fixed +- **AI chat patient record cards** now render on Google Gemini for name + lookups. "Show me 's medical record" relied on the model chaining + `searchPatients` → `getPatient`, but Gemini often called `searchPatients` + and then emitted only a canned closing line ("Here's the record.") without + the second tool call — so no card was ever drawn. `searchPatients` now + displays the record card directly when exactly one patient matches, so the + flow no longer depends on a follow-up tool call. (The previous Gemini fix in + 0.2.2 only covered the empty-schema list tools.) + ## [0.2.2] — 2026-06-28 ### Fixed diff --git a/backend/package.json b/backend/package.json index fd51e32..0ca0cc7 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.2.2", + "version": "0.2.3", "private": true, "type": "module", "description": "temetro backend — Express + Postgres API with Better Auth (email/password, organizations) and org-scoped patient records.", diff --git a/frontend/package.json b/frontend/package.json index 58b60b6..09e50e9 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.2.2", + "version": "0.2.3", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index d1aedba..e9bcb84 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.2.2", + "version": "0.2.3", "private": true, "devDependencies": { "shadcn": "^4.11.0"