cocoapods 1.10.0.beta.1 → 1.10.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b20313588dcd7f5304834e2f2323a0b82bdb88e9fa1399c590715e5e8327dd0a
4
- data.tar.gz: 440dca113c086ca0c2be592c625b04cde71ec3f3b42767bedce2c0e237d949ed
3
+ metadata.gz: cb6ea2032e8f048ddbdddbef9d383ddb952c1d7ebec5c2a4ae2fa458b6047af8
4
+ data.tar.gz: 0cb3253433506bb0ffbdabc77ef3ca3e4dcd098deeed4bffb9e05c342399a056
5
5
  SHA512:
6
- metadata.gz: 30216b5c073bd8c16528007410e17981b6711551900386081dc5aec20cbdb8d3fb15a47ead27752b1d1a67bdec627c2b2717911f095e4a8b2ad8e92e076c7a94
7
- data.tar.gz: bb9dc6f0144897d8b1a10be06643b51d273ac0c60340187e9bf022a12762ac698e360970acac191dba7f8b5774d64b9e7d0764e7d2f839245c08c9305b0166a9
6
+ metadata.gz: 8d40b3fb83faad9c20a172c4b980f3aa2412169c180463747883504cb6747fd6adf76013451055c3f3cc3816a555468b9d77436ec73947bd9727192fc4f4d2ae
7
+ data.tar.gz: 0f424168358d4940f151f2b67639d4782cf59619b36b62420d880e37ab46d7831cb55abcb1f9b0105e0d8c7933de44009d47a0156633f645254bf58f1fa9f408
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the CocoaPods command line tool.
3
3
  #
4
- VERSION = '1.10.0.beta.1'.freeze unless defined? Pod::VERSION
4
+ VERSION = '1.10.0.beta.2'.freeze unless defined? Pod::VERSION
5
5
  end
@@ -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.1
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-07-17 00:00:00.000000000 Z
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.1
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.1
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: []