cocoapods 1.13.0 → 1.14.0
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/gem_version.rb +1 -1
- data/lib/cocoapods.rb +2 -0
- metadata +5 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 333d0f9558f023f5d2b821566ff350ee4efea1fef6e04f603da115ea87169ad8
|
|
4
|
+
data.tar.gz: e6f6e935c5f2fd24f14ef244e421db883d3eb955d9eb6792116eba617d74d68e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6608a00869def16526d88ec06498de4c958261c9f77586967e10a5281f5f96aa78e2424c6a8cbce9cac78873e8199cdd90243d6fba4062e8320c0b03e1b0760a
|
|
7
|
+
data.tar.gz: f1c7a08c14ba8b7dd98ce1a1ca43fa0849e5f2ce272498d9288fcac77e53756472c9cf1057b89ac81bdd902fe27aaaad1b93546ff850f0f094ad51896610f0a9
|
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.14.0 (2023-10-26)
|
|
8
|
+
|
|
9
|
+
##### Enhancements
|
|
10
|
+
|
|
11
|
+
* None.
|
|
12
|
+
|
|
13
|
+
##### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Fix a crash when running with activesupport 7.1.0.
|
|
16
|
+
[MCanhisares](https://github.com/MCanhisares)
|
|
17
|
+
[#12081](https://github.com/CocoaPods/CocoaPods/issues/12081)
|
|
18
|
+
|
|
19
|
+
* Fix another crash when running with activesupport 7.1.0.
|
|
20
|
+
[movila](https://github.com/movila)
|
|
21
|
+
[#12089](https://github.com/CocoaPods/CocoaPods/issues/12089)
|
|
22
|
+
|
|
23
|
+
##### Other
|
|
24
|
+
|
|
25
|
+
* Drop support for `bazaar` SCM
|
|
26
|
+
|
|
27
|
+
|
|
7
28
|
## 1.13.0 (2023-09-22)
|
|
8
29
|
|
|
9
30
|
##### Enhancements
|
data/lib/cocoapods.rb
CHANGED
|
@@ -4,6 +4,8 @@ require 'xcodeproj'
|
|
|
4
4
|
# It is very likely that we'll need these and as some of those paths will atm
|
|
5
5
|
# result in a I18n deprecation warning, we load those here now so that we can
|
|
6
6
|
# get rid of that warning.
|
|
7
|
+
require 'active_support'
|
|
8
|
+
require 'active_support/core_ext'
|
|
7
9
|
require 'active_support/core_ext/string/strip'
|
|
8
10
|
require 'active_support/core_ext/string/inflections'
|
|
9
11
|
require 'active_support/core_ext/array/conversions'
|
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.
|
|
4
|
+
version: 1.14.0
|
|
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-10-25 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.
|
|
22
|
+
version: 1.14.0
|
|
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.
|
|
29
|
+
version: 1.14.0
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: claide
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,9 +72,6 @@ dependencies:
|
|
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - ">="
|
|
75
|
-
- !ruby/object:Gem::Version
|
|
76
|
-
version: 1.6.0
|
|
77
|
-
- - "<"
|
|
78
75
|
- !ruby/object:Gem::Version
|
|
79
76
|
version: '2.0'
|
|
80
77
|
type: :runtime
|
|
@@ -82,9 +79,6 @@ dependencies:
|
|
|
82
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
83
80
|
requirements:
|
|
84
81
|
- - ">="
|
|
85
|
-
- !ruby/object:Gem::Version
|
|
86
|
-
version: 1.6.0
|
|
87
|
-
- - "<"
|
|
88
82
|
- !ruby/object:Gem::Version
|
|
89
83
|
version: '2.0'
|
|
90
84
|
- !ruby/object:Gem::Dependency
|
|
@@ -539,7 +533,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
539
533
|
requirements:
|
|
540
534
|
- - ">="
|
|
541
535
|
- !ruby/object:Gem::Version
|
|
542
|
-
version: '2.
|
|
536
|
+
version: '2.7'
|
|
543
537
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
544
538
|
requirements:
|
|
545
539
|
- - ">="
|