cocoapods 1.12.0 → 1.12.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 +21 -0
- data/lib/cocoapods/command/lib/lint.rb +1 -1
- data/lib/cocoapods/command/repo/push.rb +1 -1
- data/lib/cocoapods/command/spec/lint.rb +1 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/app_target_helper.rb +1 -1
- data/lib/cocoapods/generator/embed_frameworks_script.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7eb2a7cb51265484772462e33da3c268da859b1f18adffdb57d6e6f4c2d378a2
|
|
4
|
+
data.tar.gz: 4d47bdd4efa9026b670884c3b230adc94ffb69e66953945349e0d4a17f9d6018
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16cd5d292991ab0067b0611eb82e8fe6fa8d50bfe6ee36779bb45d5f14101e1b359d8cf6b8ae15aa74f54f6cb36d441429500ec1f8f7909928a15208b568e67a
|
|
7
|
+
data.tar.gz: 22d3de57cb0446e321e740591b5bd9378d3fc0ed4ee1b521b8ec8d33d18608f5a53b75e7086b4e5244221660c6f6f6b4328180d3c7b07a7fbbf562b9b108d58f
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,27 @@ To install or update CocoaPods see this [guide](https://guides.cocoapods.org/usi
|
|
|
4
4
|
|
|
5
5
|
To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
6
6
|
|
|
7
|
+
## 1.12.1 (2023-04-18)
|
|
8
|
+
|
|
9
|
+
##### Enhancements
|
|
10
|
+
|
|
11
|
+
* None.
|
|
12
|
+
|
|
13
|
+
##### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Xcode 14.3 fix: Pass the -f option when resolving the path to the symlinked source.
|
|
16
|
+
[Chris Vasselli](https://github.com/chrisvasselli)
|
|
17
|
+
[#11828](https://github.com/CocoaPods/CocoaPods/pull/11828)
|
|
18
|
+
[#11808](https://github.com/CocoaPods/CocoaPods/issues/11808)
|
|
19
|
+
|
|
20
|
+
* Fix typo in validation for `--validation-dir` help message
|
|
21
|
+
[Austin Evans](https://github.com/ajevans99)
|
|
22
|
+
[#11857](https://github.com/CocoaPods/CocoaPods/issues/11857)
|
|
23
|
+
|
|
24
|
+
# Xcode 14.3 fix: `pod lib lint` warning generation from main.m.
|
|
25
|
+
[Paul Beusterien](https://github.com/paulb777)
|
|
26
|
+
[#11846](https://github.com/CocoaPods/CocoaPods/issuess/11846)
|
|
27
|
+
|
|
7
28
|
## 1.12.0 (2023-02-27)
|
|
8
29
|
|
|
9
30
|
##### Enhancements
|
|
@@ -38,7 +38,7 @@ module Pod
|
|
|
38
38
|
['--test-specs=test-spec1,test-spec2,etc', 'List of test specs to run'],
|
|
39
39
|
['--analyze', 'Validate with the Xcode Static Analysis tool'],
|
|
40
40
|
['--configuration=CONFIGURATION', 'Build using the given configuration (defaults to Release)'],
|
|
41
|
-
['--
|
|
41
|
+
['--validation-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
|
|
42
42
|
].concat(super)
|
|
43
43
|
end
|
|
44
44
|
|
|
@@ -38,7 +38,7 @@ module Pod
|
|
|
38
38
|
'This takes precedence over the Swift versions specified by the spec or a `.swift-version` file'],
|
|
39
39
|
['--no-overwrite', 'Disallow pushing that would overwrite an existing spec'],
|
|
40
40
|
['--update-sources', 'Make sure sources are up-to-date before a push'],
|
|
41
|
-
['--
|
|
41
|
+
['--validation-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
|
|
42
42
|
].concat(super)
|
|
43
43
|
end
|
|
44
44
|
|
|
@@ -37,7 +37,7 @@ module Pod
|
|
|
37
37
|
['--test-specs=test-spec1,test-spec2,etc', 'List of test specs to run'],
|
|
38
38
|
['--analyze', 'Validate with the Xcode Static Analysis tool'],
|
|
39
39
|
['--configuration=CONFIGURATION', 'Build using the given configuration (defaults to Release)'],
|
|
40
|
-
['--
|
|
40
|
+
['--validation-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
|
|
41
41
|
].concat(super)
|
|
42
42
|
end
|
|
43
43
|
|
|
@@ -203,7 +203,7 @@ module Pod
|
|
|
203
203
|
f << "@import Foundation;\n"
|
|
204
204
|
f << "@import UIKit;\n" if platform == :ios || platform == :tvos
|
|
205
205
|
f << "@import Cocoa;\n" if platform == :osx
|
|
206
|
-
f << "#{import_statement}int main() {}\n"
|
|
206
|
+
f << "#{import_statement}int main(void) {}\n"
|
|
207
207
|
end
|
|
208
208
|
end
|
|
209
209
|
source_file
|
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.12.
|
|
4
|
+
version: 1.12.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: 2023-
|
|
14
|
+
date: 2023-04-18 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.12.
|
|
22
|
+
version: 1.12.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.12.
|
|
29
|
+
version: 1.12.1
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: claide
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|