Skip to content

Commit 10fd1eb

Browse files
authored
Use Cocoapods 1.6 (#328)
* Use Cocoapods 1.6 * Allow warnings
1 parent 95155ff commit 10fd1eb

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Select Xcode Version
4848
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
4949
- name: Lint Podspec
50-
run: bundle exec pod lib lint --verbose --fail-fast --swift-version=6.0
50+
run: bundle exec pod lib lint --verbose --fail-fast --swift-version=6.0 --allow-warnings # Cocoapods v1.6 now warns about potential naming colisions. We can fix this in the next breaking change.
5151
carthage:
5252
name: Carthage
5353
runs-on: macOS-15

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
source "https://rubygems.org"
22

3-
gem 'cocoapods', '~> 1.15.0'
3+
gem 'cocoapods', '~> 1.16.0'

Gemfile.lock

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GEM
55
base64
66
nkf
77
rexml
8-
activesupport (7.2.1)
8+
activesupport (7.2.1.2)
99
base64
1010
bigdecimal
1111
concurrent-ruby (~> 1.0, >= 1.3.1)
@@ -25,10 +25,10 @@ GEM
2525
base64 (0.2.0)
2626
bigdecimal (3.1.8)
2727
claide (1.1.0)
28-
cocoapods (1.15.2)
28+
cocoapods (1.16.1)
2929
addressable (~> 2.8)
3030
claide (>= 1.0.2, < 2.0)
31-
cocoapods-core (= 1.15.2)
31+
cocoapods-core (= 1.16.1)
3232
cocoapods-deintegrate (>= 1.0.3, < 2.0)
3333
cocoapods-downloader (>= 2.1, < 3.0)
3434
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -42,8 +42,8 @@ GEM
4242
molinillo (~> 0.8.0)
4343
nap (~> 1.0)
4444
ruby-macho (>= 2.3.0, < 3.0)
45-
xcodeproj (>= 1.23.0, < 2.0)
46-
cocoapods-core (1.15.2)
45+
xcodeproj (>= 1.26.0, < 2.0)
46+
cocoapods-core (1.16.1)
4747
activesupport (>= 5.0, < 8)
4848
addressable (~> 2.8)
4949
algoliasearch (~> 1.0)
@@ -76,11 +76,11 @@ GEM
7676
httpclient (2.8.3)
7777
i18n (1.14.6)
7878
concurrent-ruby (~> 1.0)
79-
json (2.7.2)
79+
json (2.7.5)
8080
logger (1.6.1)
8181
minitest (5.25.1)
8282
molinillo (0.8.0)
83-
nanaimo (0.3.0)
83+
nanaimo (0.4.0)
8484
nap (1.1.0)
8585
netrc (0.11.0)
8686
nkf (0.2.0)
@@ -92,19 +92,19 @@ GEM
9292
ethon (>= 0.9.0)
9393
tzinfo (2.0.6)
9494
concurrent-ruby (~> 1.0)
95-
xcodeproj (1.25.1)
95+
xcodeproj (1.26.0)
9696
CFPropertyList (>= 2.3.3, < 4.0)
9797
atomos (~> 0.1.3)
9898
claide (>= 1.0.2, < 2.0)
9999
colored2 (~> 3.1)
100-
nanaimo (~> 0.3.0)
100+
nanaimo (~> 0.4.0)
101101
rexml (>= 3.3.6, < 4.0)
102102

103103
PLATFORMS
104104
ruby
105105

106106
DEPENDENCIES
107-
cocoapods (~> 1.15.0)
107+
cocoapods (~> 1.16.0)
108108

109109
BUNDLED WITH
110110
2.5.16

0 commit comments

Comments
 (0)