Aligns every version string in the repo to 6.1.0:
- package.json: 6.0.0 → 6.1.0
- mobile/package.json: 1.0.0 → 6.1.0
- mobile/android/app/build.gradle: versionCode 1 → 610,
versionName "1.0" → "6.1.0"
- server.js: hardcoded "v6.0" → reads root package.json at boot
- /api/health/detailed now reports APP_VERSION from package.json
Adds scripts/release.sh — a one-command bump:
scripts/release.sh 6.1.1 # local bump + tag
scripts/release.sh 6.1.1 --push # + git push
scripts/release.sh 6.1.1 --push --gh # + GitHub release (uploads
APK if already built)
Updates all three version sites, commits "Release v6.1.1",
creates annotated tag, optionally pushes and opens a release.
versionCode encoded as MAJ*100000 + MIN*1000 + PATCH so patch
updates always increment monotonically.
28 lines
931 B
JSON
28 lines
931 B
JSON
{
|
|
"name": "pedscribe-mobile",
|
|
"version": "6.1.0",
|
|
"description": "PedScribe native mobile app — Capacitor wrapper for Pediatric AI Scribe",
|
|
"private": true,
|
|
"scripts": {
|
|
"sync": "npx cap sync",
|
|
"android": "npx cap open android",
|
|
"ios": "npx cap open ios",
|
|
"build:android": "npx cap sync android && cd android && ./gradlew assembleRelease",
|
|
"build:ios": "npx cap sync ios"
|
|
},
|
|
"dependencies": {
|
|
"@capacitor/android": "^6.0.0",
|
|
"@capacitor/app": "^6.0.0",
|
|
"@capacitor/cli": "^6.0.0",
|
|
"@capacitor/core": "^6.0.0",
|
|
"@capacitor/ios": "^6.0.0",
|
|
"@capacitor/haptics": "^6.0.0",
|
|
"@capacitor/keyboard": "^6.0.0",
|
|
"@capacitor/push-notifications": "^6.0.0",
|
|
"@capacitor/screen-orientation": "^6.0.0",
|
|
"@capacitor/share": "^6.0.0",
|
|
"@capacitor/splash-screen": "^6.0.0",
|
|
"@capacitor/status-bar": "^6.0.0",
|
|
"capacitor-secure-storage-plugin": "^0.10.0"
|
|
}
|
|
}
|