cocoapods 1.10.0.beta.1 → 1.10.0.beta.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb6ea2032e8f048ddbdddbef9d383ddb952c1d7ebec5c2a4ae2fa458b6047af8
|
|
4
|
+
data.tar.gz: 0cb3253433506bb0ffbdabc77ef3ca3e4dcd098deeed4bffb9e05c342399a056
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d40b3fb83faad9c20a172c4b980f3aa2412169c180463747883504cb6747fd6adf76013451055c3f3cc3816a555468b9d77436ec73947bd9727192fc4f4d2ae
|
|
7
|
+
data.tar.gz: 0f424168358d4940f151f2b67639d4782cf59619b36b62420d880e37ab46d7831cb55abcb1f9b0105e0d8c7933de44009d47a0156633f645254bf58f1fa9f408
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ 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.10.0.beta.2 (2020-08-12)
|
|
8
|
+
|
|
9
|
+
##### Enhancements
|
|
10
|
+
|
|
11
|
+
* None.
|
|
12
|
+
|
|
13
|
+
##### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Ensure that static frameworks are not embedded
|
|
16
|
+
[Bernard Gatt](https://github.com/BernardGatt)
|
|
17
|
+
[#9943](https://github.com/CocoaPods/CocoaPods/issues/9943)
|
|
18
|
+
|
|
19
|
+
* Ensure that the non-compilable resource skipping in static frameworks happens only for the pod itself
|
|
20
|
+
[Igor Makarov](https://github.com/igor-makarov)
|
|
21
|
+
[#9922](https://github.com/CocoaPods/CocoaPods/pull/9922)
|
|
22
|
+
[#9920](https://github.com/CocoaPods/CocoaPods/issues/9920)
|
|
23
|
+
|
|
24
|
+
|
|
7
25
|
## 1.10.0.beta.1 (2020-07-17)
|
|
8
26
|
|
|
9
27
|
##### Breaking
|
|
@@ -158,7 +158,7 @@ code_sign_if_enabled() {
|
|
|
158
158
|
end
|
|
159
159
|
end
|
|
160
160
|
xcframeworks_by_config.each do |config, xcframeworks|
|
|
161
|
-
xcframeworks.each do |xcframework|
|
|
161
|
+
xcframeworks.select { |xcf| xcf.build_type.dynamic_framework? }.each do |xcframework|
|
|
162
162
|
name = xcframework.name
|
|
163
163
|
contents_by_config[config] << %( install_framework "#{Target::BuildSettings::XCFRAMEWORKS_BUILD_DIR_VARIABLE}/#{name}/#{name}.framework"\n)
|
|
164
164
|
end
|
|
@@ -355,7 +355,7 @@ module Pod
|
|
|
355
355
|
filter_resource_file_references(file_accessor.resources.flatten) do |compile_phase_refs, resource_phase_refs|
|
|
356
356
|
native_target.add_file_references(compile_phase_refs, nil)
|
|
357
357
|
|
|
358
|
-
if target.build_as_static_framework?
|
|
358
|
+
if target.build_as_static_framework? && consumer.spec.library_specification?
|
|
359
359
|
resource_phase_refs = resource_phase_refs.select { |ref| Target.resource_extension_compilable?(File.extname(ref.path)) }
|
|
360
360
|
end
|
|
361
361
|
|
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.0.beta.
|
|
4
|
+
version: 1.10.0.beta.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eloy Duran
|
|
8
8
|
- Fabio Pelosin
|
|
9
9
|
- Kyle Fuller
|
|
10
10
|
- Samuel Giddins
|
|
11
|
-
autorequire:
|
|
11
|
+
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2020-
|
|
14
|
+
date: 2020-08-12 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.10.0.beta.
|
|
22
|
+
version: 1.10.0.beta.2
|
|
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.10.0.beta.
|
|
29
|
+
version: 1.10.0.beta.2
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: claide
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -201,20 +201,6 @@ dependencies:
|
|
|
201
201
|
- - "<"
|
|
202
202
|
- !ruby/object:Gem::Version
|
|
203
203
|
version: '2.0'
|
|
204
|
-
- !ruby/object:Gem::Dependency
|
|
205
|
-
name: activesupport
|
|
206
|
-
requirement: !ruby/object:Gem::Requirement
|
|
207
|
-
requirements:
|
|
208
|
-
- - ">"
|
|
209
|
-
- !ruby/object:Gem::Version
|
|
210
|
-
version: '5'
|
|
211
|
-
type: :runtime
|
|
212
|
-
prerelease: false
|
|
213
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
214
|
-
requirements:
|
|
215
|
-
- - ">"
|
|
216
|
-
- !ruby/object:Gem::Version
|
|
217
|
-
version: '5'
|
|
218
204
|
- !ruby/object:Gem::Dependency
|
|
219
205
|
name: colored2
|
|
220
206
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -537,7 +523,7 @@ homepage: https://github.com/CocoaPods/CocoaPods
|
|
|
537
523
|
licenses:
|
|
538
524
|
- MIT
|
|
539
525
|
metadata: {}
|
|
540
|
-
post_install_message:
|
|
526
|
+
post_install_message:
|
|
541
527
|
rdoc_options: []
|
|
542
528
|
require_paths:
|
|
543
529
|
- lib
|
|
@@ -553,7 +539,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
553
539
|
version: '0'
|
|
554
540
|
requirements: []
|
|
555
541
|
rubygems_version: 3.0.3
|
|
556
|
-
signing_key:
|
|
542
|
+
signing_key:
|
|
557
543
|
specification_version: 3
|
|
558
544
|
summary: The Cocoa library package manager.
|
|
559
545
|
test_files: []
|