diff --git a/CHANGELOG.md b/CHANGELOG.md index b4bfe79..6df8d50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ for how releases are cut and published. ## [Unreleased] +## [0.14.2] — 2026-07-15 + +### Fixed +- **Docker images build on ARM64 again.** Next 16's default Turbopack production build has no native + bindings for `linux/arm64` in the Alpine image, so `docker compose up --build` failed with + "Turbopack is not supported on this platform". The frontend now builds with Webpack + (`next build --webpack`), which builds on every architecture (`frontend/package.json`). + ## [0.14.1] — 2026-07-15 ### Fixed diff --git a/backend/package.json b/backend/package.json index a7726b1..f90d36a 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.14.1", + "version": "0.14.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 29558b1..a33530c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.14.1", + "version": "0.14.2", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 4812692..4b5fb7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.14.1", + "version": "0.14.2", "private": true, "devDependencies": { "shadcn": "^4.11.0"