From f12285b8c66aa717a4fc182480f883f3d01e253f Mon Sep 17 00:00:00 2001 From: Khalid Abdi Date: Sun, 28 Jun 2026 20:53:13 +0300 Subject: [PATCH] chore(release): v0.2.2 Co-Authored-By: Claude Opus 4.8 --- CHANGELOG.md | 12 ++++++++++++ backend/package.json | 2 +- frontend/package.json | 2 +- package.json | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 065f0c4..14b0ce6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ for how releases are cut and published. ## [Unreleased] +## [0.2.2] — 2026-06-28 + +### Fixed +- **AI chat record cards** now render on Google Gemini. The card-emitting + chat tools (`listAppointments`, `listTasks`, `listPrescriptions`, + `getClinicInfo`, `getAnalytics`, `listInventory`) used an empty parameter + schema; Gemini can't emit a function call for a schema with no properties, + so it printed the call as `tool_code` text instead of invoking the tool — + leaving replies as plain text (e.g. "Show today's schedule" leaked a raw + `` block) with no cards. The tools now share a non-empty schema + so Gemini calls them; other providers are unaffected. + ## [0.2.1] — 2026-06-27 ### Fixed diff --git a/backend/package.json b/backend/package.json index 387ac35..fd51e32 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.2.1", + "version": "0.2.2", "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 d680f5f..58b60b6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.2.1", + "version": "0.2.2", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 812c197..d1aedba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.2.1", + "version": "0.2.2", "private": true, "devDependencies": { "shadcn": "^4.11.0"