cocoapods 1.5.2 → 1.5.3
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 +15 -0
- data/lib/cocoapods/command.rb +3 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b21aa16719488a078778544cfa272f8f000c0c5fa4c4f3ae27694f1a440e01c9
|
|
4
|
+
data.tar.gz: 2cc429dd3b839ac42b19f574a1eebff1a112d2036fa93eb78d1a541450bb5bf6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa3eeada9bda4ad9b3605272fb2cd742a83b2997405061a336787d938cedeeff7cd91c5832410a07dfbf79869ab342dd797e8fb16e5bb07f1a4e6e850c31d474
|
|
7
|
+
data.tar.gz: 8aae65be343ff7df51de6c83d613e0b56662f7fdd99e6944d50729735f916b1f31df9dddb64c455e5d15b16c77c32d62ef3d880a77511a0850f9718269d9a2d4
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ 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.5.3 (2018-05-25)
|
|
8
|
+
|
|
9
|
+
##### Enhancements
|
|
10
|
+
|
|
11
|
+
* None.
|
|
12
|
+
|
|
13
|
+
##### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Fix compatibility with RubyGems 2.7.7.
|
|
16
|
+
[Samuel Giddins](https://github.com/segiddins)
|
|
17
|
+
[#7765](https://github.com/CocoaPods/CocoaPods/issues/7765)
|
|
18
|
+
[#7766](https://github.com/CocoaPods/CocoaPods/issues/7766)
|
|
19
|
+
[#7763](https://github.com/CocoaPods/CocoaPods/issues/7763)
|
|
20
|
+
|
|
21
|
+
|
|
7
22
|
## 1.5.2 (2018-05-09)
|
|
8
23
|
|
|
9
24
|
##### Enhancements
|
data/lib/cocoapods/command.rb
CHANGED
|
@@ -114,7 +114,9 @@ module Pod
|
|
|
114
114
|
#
|
|
115
115
|
def self.git_version
|
|
116
116
|
raw_version = Executable.capture_command('git', ['--version']).first
|
|
117
|
-
match = raw_version.scan(/\d+\.\d+\.\d+/).first
|
|
117
|
+
unless match = raw_version.scan(/\d+\.\d+\.\d+/).first
|
|
118
|
+
raise "Failed to extract git version from `git --version` (#{raw_version.inspect})"
|
|
119
|
+
end
|
|
118
120
|
Gem::Version.new(match)
|
|
119
121
|
end
|
|
120
122
|
|
|
@@ -106,7 +106,7 @@ module Pod
|
|
|
106
106
|
target.target_definition.swift_version unless target.target_definition.swift_version.blank?
|
|
107
107
|
end
|
|
108
108
|
|
|
109
|
-
EMBED_STANDARD_LIBRARIES_MINIMUM_VERSION =
|
|
109
|
+
EMBED_STANDARD_LIBRARIES_MINIMUM_VERSION = Version.new('2.3')
|
|
110
110
|
|
|
111
111
|
# @return [Hash<String, String>] the build settings necessary for Swift
|
|
112
112
|
# targets to be correctly embedded in their host.
|
|
@@ -120,7 +120,7 @@ module Pod
|
|
|
120
120
|
# cause an App Store rejection because frameworks cannot be embedded
|
|
121
121
|
# in embedded targets.
|
|
122
122
|
|
|
123
|
-
swift_version =
|
|
123
|
+
swift_version = Version.new(target_swift_version)
|
|
124
124
|
should_embed = !target.requires_host_target? && pod_targets.any?(&:uses_swift?)
|
|
125
125
|
config = {}
|
|
126
126
|
if should_embed
|
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.5.
|
|
4
|
+
version: 1.5.3
|
|
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: 2018-05-
|
|
14
|
+
date: 2018-05-24 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.5.
|
|
22
|
+
version: 1.5.3
|
|
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.5.
|
|
29
|
+
version: 1.5.3
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: claide
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -526,7 +526,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
526
526
|
version: '0'
|
|
527
527
|
requirements: []
|
|
528
528
|
rubyforge_project:
|
|
529
|
-
rubygems_version: 2.7.
|
|
529
|
+
rubygems_version: 2.7.7
|
|
530
530
|
signing_key:
|
|
531
531
|
specification_version: 3
|
|
532
532
|
summary: The Cocoa library package manager.
|