Commit 909300e1 authored by Samuel Giddins's avatar Samuel Giddins

Merge pull request #5112 from CocoaPods/seg-resource-bundle-bundle-version

[Generator::Plist] Ensure a CFBundleVersion is set for resource bundles
parents a33c0d28 3d6c09b5
...@@ -38,15 +38,17 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -38,15 +38,17 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Marius Rackwitz](https://github.com/mrackwitz) [Marius Rackwitz](https://github.com/mrackwitz)
[#5034](https://github.com/CocoaPods/CocoaPods/issues/5034) [#5034](https://github.com/CocoaPods/CocoaPods/issues/5034)
## 1.0.0.beta.7
* Rely on `TARGET_BUILD_DIR` instead of `CONFIGURATION_BUILD_DIR` in the * Rely on `TARGET_BUILD_DIR` instead of `CONFIGURATION_BUILD_DIR` in the
generated embed resources build phase's script, so that UI test targets can generated embed resources build phase's script, so that UI test targets can
be run. be run.
[seaders](https://github.com/seaders) [seaders](https://github.com/seaders)
[#5133](https://github.com/CocoaPods/CocoaPods/issues/5133) [#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) ## 1.0.0.beta.6 (2016-03-15)
......
...@@ -116,6 +116,7 @@ module Pod ...@@ -116,6 +116,7 @@ module Pod
} }
info['CFBundleExecutable'] = '${EXECUTABLE_NAME}' if bundle_package_type != :bndl 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['UIRequiredDeviceCapabilities'] = %w(arm64) if target.platform.name == :tvos
info info
......
Subproject commit 792d2aa8f0cf2ce3e32e9de05e6b4ca77073c378 Subproject commit 9d314911a5b8fa960aaccf4b25d9529e6be87e16
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