@otalan/cli 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to `@otalan/cli` will be documented in this file.
4
4
 
5
+ ## 1.0.3 - 2026-05-04
6
+
7
+ ### Added
8
+
9
+ - Prompt interactively for bundle native version and bundle ID, with hints for the detected native version, local bundle ID, and active published bundle ID when available.
10
+
5
11
  ## 1.0.2 - 2026-05-04
6
12
 
7
13
  ### Added
package/README.md CHANGED
@@ -293,6 +293,7 @@ Current behavior:
293
293
 
294
294
  Native version defaults:
295
295
 
296
+ - In an interactive terminal, `otalan bundle` prompts for the native version after showing the detected active native version.
296
297
  - Capacitor iOS reads `CFBundleShortVersionString` from `Info.plist` and resolves `$(MARKETING_VERSION)` from the Xcode project when needed
297
298
  - Capacitor Android reads `versionName` from `android/app/build.gradle` or `build.gradle.kts`
298
299
  - Expo reads the selected platform version from Expo config and falls back to the top-level Expo `version`
@@ -310,6 +311,10 @@ otalan bundle --target expo --platform ios --bundle-id 1.0.5
310
311
 
311
312
  If you omit `bundleId`:
312
313
 
314
+ - in an interactive terminal, the CLI prompts for a bundle ID and shows the local bundle ID from `.otalan/bundle/manifest.json` when available
315
+ - when `otalan login` and `otalan init` are configured, the prompt also shows the active published bundle ID for the selected platform/native version/channel
316
+ - published bundle hints use `--channel`, defaulting to `production`
317
+ - pressing Enter without a bundle ID keeps the automatic bundle ID behavior
313
318
  - the CLI reads `nativeVersion` from the selected native platform and adds a short hash suffix
314
319
  - example: `1.0.0-abc123def456`
315
320