We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e296e4b commit acd7574Copy full SHA for acd7574
.changes/fix-cf-bundle-version.md
@@ -0,0 +1,5 @@
1
+---
2
+'tauri-cli': 'patch:bug'
3
4
+
5
+Fix type of CFBundleVersion generated by `tauri ios init` when `bundleVersion` is a single number (for example `1` instead of `1.0.0`).
crates/tauri-cli/templates/mobile/ios/project.yml
@@ -59,7 +59,7 @@ targets:
59
- UIInterfaceOrientationLandscapeLeft
60
- UIInterfaceOrientationLandscapeRight
61
CFBundleShortVersionString: {{apple.bundle-version-short}}
62
- CFBundleVersion: {{apple.bundle-version}}
+ CFBundleVersion: "{{apple.bundle-version}}"
63
{{~#each apple.plist-pairs}}
64
{{this.key}}: {{this.value}}{{/each}}
65
entitlements:
0 commit comments