cocoapods 1.9.0 → 1.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24f875616a403c4ddb34d0a8b7af2f7d8d63ba851fe9ff6d6fc84200a51ee373
4
- data.tar.gz: 5e279cf00975ca84acc690b8aa7a731d53e676ca0143d570d1e7bbcbaa4c02ba
3
+ metadata.gz: 5d09ebc5f52b3cc99cbd28d1c02d4e91814d1da868f74e0471d24dc68af11418
4
+ data.tar.gz: e32f37318381027f67961784e392e3b01535e46299a3ff33394bafcb86f376d3
5
5
  SHA512:
6
- metadata.gz: de961666641f51fbf193e6fd9918b4d1eb0c4faf047fd6ac81379257ce6883feaafbcf235847e3442110c2432da7cf9a8f3539f1999804ab2045cd762878ef02
7
- data.tar.gz: 4a498dbb1231ec3a6162e86064956b00f198dc483be6838bf9b8236fa2573fac5b65f566f7ae71eaff50231f214b043a191790ef802a278135d3920e5360b54a
6
+ metadata.gz: ac8f0545426c0f5bcbe9425a402a700a7b9e101036b7ca9762d627d5a081fd1aed30a1be33b10de4bad5488c43326c479cb63bbe0062e392623afc7d80e31460
7
+ data.tar.gz: 4c939088685f310f79f110c38945d4551fdf009086e04677277b8d38523c5d3bb103526346708f4954a37bcfc72446366eb3b2a51088cb3b69c4a6e2942b1d78
data/CHANGELOG.md CHANGED
@@ -4,6 +4,27 @@ 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.9.1 (2020-03-09)
8
+
9
+ ##### Enhancements
10
+
11
+ * None.
12
+
13
+ ##### Bug Fixes
14
+
15
+ * Apply correct `SYSTEM_FRAMEWORK_SEARCH_PATHS` for `XCTUnwrap` fix.
16
+ [Dimitris Koutsogiorgas](https://github.com/dnkoutso)
17
+ [#9579](https://github.com/CocoaPods/CocoaPods/pull/9579)
18
+
19
+ * Fix an issue that caused a build failure with vendored XCFrameworks on macOS
20
+ [Eric Amorde](https://github.com/amorde)
21
+ [#9572](https://github.com/CocoaPods/CocoaPods/issues/9572)
22
+
23
+ * Fix an issue that prevented the correct XCFramework slice from being selected for watchOS extensions
24
+ [Eric Amorde](https://github.com/amorde)
25
+ [#9569](https://github.com/CocoaPods/CocoaPods/issues/9569)
26
+
27
+
7
28
  ## 1.9.0 (2020-02-25)
8
29
 
9
30
  ##### Enhancements
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the CocoaPods command line tool.
3
3
  #
4
- VERSION = '1.9.0'.freeze unless defined? Pod::VERSION
4
+ VERSION = '1.9.1'.freeze unless defined? Pod::VERSION
5
5
  end
@@ -144,11 +144,15 @@ module Pod
144
144
  # Locate the correct slice of the .xcframework for the current architectures
145
145
  local target_path=""
146
146
  local target_arch="$ARCHS"
147
+
148
+ # Replace spaces in compound architectures with _ to match slice format
149
+ target_arch=${target_arch//\ /_}
150
+
147
151
  local target_variant=""
148
152
  if [[ "$PLATFORM_NAME" == *"simulator" ]]; then
149
153
  target_variant="simulator"
150
154
  fi
151
- if [[ "$EFFECTIVE_PLATFORM_NAME" == *"maccatalyst" ]]; then
155
+ if [[ ! -z ${EFFECTIVE_PLATFORM_NAME+x} && "$EFFECTIVE_PLATFORM_NAME" == *"maccatalyst" ]]; then
152
156
  target_variant="maccatalyst"
153
157
  fi
154
158
  for i in ${!paths[@]}; do
@@ -691,7 +691,7 @@ module Pod
691
691
 
692
692
  # @return [Array<String>]
693
693
  define_build_settings_method :system_framework_search_paths, :build_setting => true, :memoized => true, :sorted => true, :uniqued => true do
694
- return ['$(PLATFORM_DIR)/Developer/usr/lib'] if should_apply_xctunwrap_fix?
694
+ return ['$(PLATFORM_DIR)/Developer/Library/Frameworks'] if should_apply_xctunwrap_fix?
695
695
  []
696
696
  end
697
697
 
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.9.0
4
+ version: 1.9.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: 2020-02-25 00:00:00.000000000 Z
14
+ date: 2020-03-09 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.9.0
22
+ version: 1.9.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.9.0
29
+ version: 1.9.1
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: claide
32
32
  requirement: !ruby/object:Gem::Requirement