Commit 19a81cd9 authored by Samuel Giddins's avatar Samuel Giddins

[Generator::Plist] Ensure a CFBundleVersion is set for resource bundles

parent a33c0d28
......@@ -46,6 +46,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
be run.
[seaders](https://github.com/seaders)
[#5133](https://github.com/CocoaPods/CocoaPods/issues/5133)
* Ensure that a `CFBundleVersion` is set for resource bundles' Info.plist
files.
[Samuel Giddins](https://github.com/segiddins)
[#4897](https://github.com/CocoaPods/CocoaPods/issues/4897)
## 1.0.0.beta.6 (2016-03-15)
......
......@@ -116,6 +116,7 @@ module Pod
}
info['CFBundleExecutable'] = '${EXECUTABLE_NAME}' if bundle_package_type != :bndl
info['CFBundleVersion'] = '1' if bundle_package_type == :bndl
info['UIRequiredDeviceCapabilities'] = %w(arm64) if target.platform.name == :tvos
info
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment