diff --git a/CHANGELOG.md b/CHANGELOG.md index b793d49..4165ae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ for how releases are cut and published. ## [Unreleased] +## [0.2.5] — 2026-07-01 + +### Fixed +- **Multi-arch Docker images** — the `release` workflow now builds and publishes + `khalidxv/temetro-backend` and `khalidxv/temetro-frontend` for both + `linux/amd64` and `linux/arm64`. Previously the images were amd64-only, so + `docker compose pull` on Apple Silicon failed with *no matching manifest for + linux/arm64/v8* and fell back to building from source. + +### Changed +- **Language switcher** in Settings → Profile is now a **select** that asks for + confirmation before switching the interface language, instead of applying the + change instantly on a button tap. + ## [0.2.4] — 2026-06-29 ### Added diff --git a/backend/package.json b/backend/package.json index 6e2d016..6f5af17 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.2.4", + "version": "0.2.5", "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 cd92891..1e95c16 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.2.4", + "version": "0.2.5", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index c4d7a07..bede021 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.2.4", + "version": "0.2.5", "private": true, "devDependencies": { "shadcn": "^4.11.0"