File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -97,9 +97,18 @@ export async function POST(request: NextRequest) {
9797- ** Instrumentation Discovery** : Uses ` GIZMOSQL_INSTRUMENTATION_ENABLED() ` , ` GIZMOSQL_INSTRUMENTATION_CATALOG() ` , ` GIZMOSQL_INSTRUMENTATION_SCHEMA() ` SQL functions
9898- ** OAuth/SSO** : Server-side OAuth code exchange flow via GizmoSQL server
9999
100+ ## Version Bumping
101+
102+ When releasing a new version, ** all** of the following must be updated to match:
103+ - ` package.json ` — ` version ` field
104+ - ` app/page.tsx ` — version displayed in the header/banner (must match ` package.json ` )
105+ - ` scripts/launcher.js ` — fallback ` VERSION ` constant
106+
100107## Pre-Commit Checklist
101108
102109- [ ] ` pnpm lint ` passes
103110- [ ] ` pnpm build ` succeeds
104111- [ ] Update ` CHANGELOG.md ` for user-facing changes
105112- [ ] Update version in ` package.json ` if releasing
113+ - [ ] Ensure banner version in ` app/page.tsx ` matches ` package.json ` version
114+ - [ ] Ensure ` scripts/launcher.js ` VERSION matches ` package.json ` version
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ process.env.NODE_ENV ??= 'production';
66process . env . NEXT_TELEMETRY_DISABLED ??= '1' ;
77
88// Read version from package.json
9- let VERSION = '2.2 .0' ;
9+ let VERSION = '2.4 .0' ;
1010try {
1111 const pkg = require ( 'package.json' ) ;
1212 VERSION = pkg . version ;
You can’t perform that action at this time.
0 commit comments