From db2bd545a1e58d03f65bb38f2d893ece6a7589ef Mon Sep 17 00:00:00 2001 From: Ricardo Mancinas Date: Thu, 30 Jul 2026 16:21:35 -0700 Subject: [PATCH] chore(release): v1.0.0 Every manifest still read 0.1.0 while the deployed images were addressed by the moving tag `latest`. That combination is what hid the stale-image bug: a checkout could not be placed against a running container, and `latest` silently kept serving two-commit-old web code through a green deploy. Tagging v1.0.0 makes docker/metadata-action publish immutable `1.0.0` and `1.0` image tags, so deploys can name a version instead of a moving target. Co-Authored-By: Claude Opus 5 --- apps/api/package.json | 2 +- apps/web/package.json | 2 +- package.json | 2 +- packages/database/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/api/package.json b/apps/api/package.json index 7dfd0ee..6a37684 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -1,6 +1,6 @@ { "name": "@jorgecuadros/api", - "version": "0.1.0", + "version": "1.0.0", "private": true, "scripts": { "build": "nest build", diff --git a/apps/web/package.json b/apps/web/package.json index 9c4ce38..a6260e2 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@jorgecuadros/web", - "version": "0.1.0", + "version": "1.0.0", "private": true, "scripts": { "dev": "next dev -p 4500", diff --git a/package.json b/package.json index 70677a4..13174c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jorgecuadros-platform", - "version": "0.1.0", + "version": "1.0.0", "private": true, "workspaces": [ "apps/*", diff --git a/packages/database/package.json b/packages/database/package.json index 76351e7..c04417f 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -1,6 +1,6 @@ { "name": "@jorgecuadros/database", - "version": "0.1.0", + "version": "1.0.0", "private": true, "main": "generated/client/index.js", "types": "generated/client/index.d.ts",