Skip to content

Commit 276ae40

Browse files
authored
feat: cocoapod 1.13.0 compatibility (#29)
1 parent 7f62db9 commit 276ae40

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ To install or update cocoapods-patch see [README](https://github.com/DoubleSymme
1212

1313
* None.
1414

15+
## 1.3.0 (14.10.23)
16+
17+
##### Enhancements
18+
19+
- Adds cocoapods support and compatibility for version >=1.12.0 and < 2.0.
20+
1521
## 1.2.0 (14.6.23)
1622

1723
##### Enhancements

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ source 'https://rubygems.org'
22

33
# Specify your gem's dependencies in cocoapods-patch.gemspec
44
gemspec
5+
gem 'activesupport', '~> 7.0', '<= 7.0.8'

Gemfile.lock

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
cocoapods-patch (1.0.3)
5-
cocoapods (~> 1.12.0)
4+
cocoapods-patch (1.3.0)
5+
cocoapods (>= 1.12.0, < 2.0)
66

77
GEM
88
remote: https://rubygems.org/
@@ -21,10 +21,10 @@ GEM
2121
json (>= 1.5.1)
2222
atomos (0.1.3)
2323
claide (1.1.0)
24-
cocoapods (1.12.0)
24+
cocoapods (1.13.0)
2525
addressable (~> 2.8)
2626
claide (>= 1.0.2, < 2.0)
27-
cocoapods-core (= 1.12.0)
27+
cocoapods-core (= 1.13.0)
2828
cocoapods-deintegrate (>= 1.0.3, < 2.0)
2929
cocoapods-downloader (>= 1.6.0, < 2.0)
3030
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -38,8 +38,8 @@ GEM
3838
molinillo (~> 0.8.0)
3939
nap (~> 1.0)
4040
ruby-macho (>= 2.3.0, < 3.0)
41-
xcodeproj (>= 1.21.0, < 2.0)
42-
cocoapods-core (1.12.0)
41+
xcodeproj (>= 1.23.0, < 2.0)
42+
cocoapods-core (1.13.0)
4343
activesupport (>= 5.0, < 8)
4444
addressable (~> 2.8)
4545
algoliasearch (~> 1.0)
@@ -98,7 +98,7 @@ GEM
9898
ethon (>= 0.9.0)
9999
tzinfo (2.0.6)
100100
concurrent-ruby (~> 1.0)
101-
xcodeproj (1.22.0)
101+
xcodeproj (1.23.0)
102102
CFPropertyList (>= 2.3.3, < 4.0)
103103
atomos (~> 0.1.3)
104104
claide (>= 1.0.2, < 2.0)
@@ -112,10 +112,11 @@ PLATFORMS
112112
x86_64-linux
113113

114114
DEPENDENCIES
115+
activesupport (~> 7.0, <= 7.0.8)
115116
bundler (~> 2.0)
116117
cocoapods-patch!
117118
rake (~> 13.0)
118119
rspec (~> 3.9)
119120

120121
BUNDLED WITH
121-
2.2.8
122+
2.4.19

cocoapods-patch.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616
spec.files = Dir['*.md', 'lib/**/*', 'LICENSE']
1717
spec.require_paths = ['lib']
1818

19-
spec.add_runtime_dependency "cocoapods", "~> 1.12.0"
19+
spec.add_runtime_dependency "cocoapods", ">= 1.12.0", "< 2.0"
2020

2121
spec.add_development_dependency 'bundler', '~> 2.0'
2222
spec.add_development_dependency 'rake', '~> 13.0'

lib/cocoapods_patch.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module CocoapodsPatch
2-
VERSION = "1.2.0"
2+
VERSION = "1.3.0"
33
end

0 commit comments

Comments
 (0)