cocoapods 1.6.0 → 1.6.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/target/build_settings.rb +6 -4
- metadata +8 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4baf26d05e0c46b55d9cb9a3bbbfac22ce644ad6
|
4
|
+
data.tar.gz: 7b272c0880a797863ddedcb3a366e8caff81d9a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 925931a7175d72dc814560d5e667c5257dd84b338c0522e688f56bd5ae0885dc5cb93521be8d01e9be87bb837d486316ad2e485042ec0c583fe7faac9b0eefb1
|
7
|
+
data.tar.gz: d82a6a5edd79cd940b743a59ba4832eeb19bee0370ae3d16bc36725ab140f467e652d748cb42da5dfeb452af3119997f72e9fdc8ab6b66adbca9a2423149c275
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,19 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
4
4
|
|
5
5
|
To install release candidates run `[sudo] gem install cocoapods --pre`
|
6
6
|
|
7
|
+
## 1.6.1 (2019-02-21)
|
8
|
+
|
9
|
+
##### Enhancements
|
10
|
+
|
11
|
+
* None.
|
12
|
+
|
13
|
+
##### Bug Fixes
|
14
|
+
|
15
|
+
* Properly link system frameworks and weak frameworks into dynamic framework targets.
|
16
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
17
|
+
[#8493](https://github.com/CocoaPods/CocoaPods/issues/8493)
|
18
|
+
|
19
|
+
|
7
20
|
## 1.6.0 (2019-02-07)
|
8
21
|
|
9
22
|
##### Enhancements
|
@@ -513,11 +513,11 @@ module Pod
|
|
513
513
|
return [] if (!target.requires_frameworks? || target.static_framework?) && !test_xcconfig?
|
514
514
|
|
515
515
|
frameworks = []
|
516
|
+
frameworks.concat consumer_frameworks
|
516
517
|
if test_xcconfig? || (target.should_build? && target.requires_frameworks? && !target.static_framework?)
|
517
518
|
frameworks.concat vendored_static_frameworks.map { |l| File.basename(l, '.framework') }
|
518
519
|
end
|
519
520
|
if test_xcconfig?
|
520
|
-
frameworks.concat consumer_frameworks
|
521
521
|
frameworks.concat vendored_dynamic_frameworks.map { |l| File.basename(l, '.framework') }
|
522
522
|
frameworks.concat dependent_targets.flat_map { |pt| pt.build_settings.frameworks_to_import }
|
523
523
|
end
|
@@ -541,8 +541,9 @@ module Pod
|
|
541
541
|
end
|
542
542
|
|
543
543
|
# @return [Array<String>]
|
544
|
-
define_build_settings_method :weak_frameworks, :memoized => true do
|
545
|
-
return []
|
544
|
+
define_build_settings_method :weak_frameworks, :memoized => true, :sorted => true, :uniqued => true do
|
545
|
+
return [] if (!target.requires_frameworks? || target.static_framework?) && !test_xcconfig?
|
546
|
+
|
546
547
|
weak_frameworks = spec_consumers.flat_map(&:weak_frameworks)
|
547
548
|
weak_frameworks.concat dependent_targets.flat_map { |pt| pt.build_settings.weak_frameworks_to_import }
|
548
549
|
weak_frameworks
|
@@ -1092,7 +1093,8 @@ module Pod
|
|
1092
1093
|
# @return [Hash{String,Hash{Target,String}]
|
1093
1094
|
#
|
1094
1095
|
def user_target_xcconfig_values_by_consumer_by_key
|
1095
|
-
pod_targets.
|
1096
|
+
targets = (pod_targets + target.search_paths_aggregate_targets.flat_map(&:pod_targets)).uniq
|
1097
|
+
targets.each_with_object({}) do |target, hash|
|
1096
1098
|
target.spec_consumers.each do |spec_consumer|
|
1097
1099
|
spec_consumer.user_target_xcconfig.each do |k, v|
|
1098
1100
|
# TODO: Need to decide how we are going to ensure settings like these
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2019-02-
|
14
|
+
date: 2019-02-21 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: cocoapods-core
|
@@ -19,14 +19,14 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - '='
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.6.
|
22
|
+
version: 1.6.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - '='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.6.
|
29
|
+
version: 1.6.1
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: claide
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -207,7 +207,7 @@ dependencies:
|
|
207
207
|
requirements:
|
208
208
|
- - ">="
|
209
209
|
- !ruby/object:Gem::Version
|
210
|
-
version: 1.8.
|
210
|
+
version: 1.8.1
|
211
211
|
- - "<"
|
212
212
|
- !ruby/object:Gem::Version
|
213
213
|
version: '2.0'
|
@@ -217,7 +217,7 @@ dependencies:
|
|
217
217
|
requirements:
|
218
218
|
- - ">="
|
219
219
|
- !ruby/object:Gem::Version
|
220
|
-
version: 1.8.
|
220
|
+
version: 1.8.1
|
221
221
|
- - "<"
|
222
222
|
- !ruby/object:Gem::Version
|
223
223
|
version: '2.0'
|
@@ -323,20 +323,14 @@ dependencies:
|
|
323
323
|
requirements:
|
324
324
|
- - "~>"
|
325
325
|
- !ruby/object:Gem::Version
|
326
|
-
version: '1.
|
327
|
-
- - ">="
|
328
|
-
- !ruby/object:Gem::Version
|
329
|
-
version: 1.3.1
|
326
|
+
version: '1.4'
|
330
327
|
type: :runtime
|
331
328
|
prerelease: false
|
332
329
|
version_requirements: !ruby/object:Gem::Requirement
|
333
330
|
requirements:
|
334
331
|
- - "~>"
|
335
332
|
- !ruby/object:Gem::Version
|
336
|
-
version: '1.
|
337
|
-
- - ">="
|
338
|
-
- !ruby/object:Gem::Version
|
339
|
-
version: 1.3.1
|
333
|
+
version: '1.4'
|
340
334
|
- !ruby/object:Gem::Dependency
|
341
335
|
name: bacon
|
342
336
|
requirement: !ruby/object:Gem::Requirement
|