Skip to content

Commit

Permalink
feat: cocoapod 1.13.0 compatibility (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
numandev1 committed Nov 6, 2023
1 parent 7f62db9 commit 276ae40
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ To install or update cocoapods-patch see [README](https://github.com/DoubleSymme

* None.

## 1.3.0 (14.10.23)

##### Enhancements

- Adds cocoapods support and compatibility for version >=1.12.0 and < 2.0.

## 1.2.0 (14.6.23)

##### Enhancements
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in cocoapods-patch.gemspec
gemspec
gem 'activesupport', '~> 7.0', '<= 7.0.8'
17 changes: 9 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
cocoapods-patch (1.0.3)
cocoapods (~> 1.12.0)
cocoapods-patch (1.3.0)
cocoapods (>= 1.12.0, < 2.0)

GEM
remote: https://rubygems.org/
Expand All @@ -21,10 +21,10 @@ GEM
json (>= 1.5.1)
atomos (0.1.3)
claide (1.1.0)
cocoapods (1.12.0)
cocoapods (1.13.0)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.12.0)
cocoapods-core (= 1.13.0)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 1.6.0, < 2.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
Expand All @@ -38,8 +38,8 @@ GEM
molinillo (~> 0.8.0)
nap (~> 1.0)
ruby-macho (>= 2.3.0, < 3.0)
xcodeproj (>= 1.21.0, < 2.0)
cocoapods-core (1.12.0)
xcodeproj (>= 1.23.0, < 2.0)
cocoapods-core (1.13.0)
activesupport (>= 5.0, < 8)
addressable (~> 2.8)
algoliasearch (~> 1.0)
Expand Down Expand Up @@ -98,7 +98,7 @@ GEM
ethon (>= 0.9.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
xcodeproj (1.22.0)
xcodeproj (1.23.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
Expand All @@ -112,10 +112,11 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
activesupport (~> 7.0, <= 7.0.8)
bundler (~> 2.0)
cocoapods-patch!
rake (~> 13.0)
rspec (~> 3.9)

BUNDLED WITH
2.2.8
2.4.19
2 changes: 1 addition & 1 deletion cocoapods-patch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.files = Dir['*.md', 'lib/**/*', 'LICENSE']
spec.require_paths = ['lib']

spec.add_runtime_dependency "cocoapods", "~> 1.12.0"
spec.add_runtime_dependency "cocoapods", ">= 1.12.0", "< 2.0"

spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods_patch.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module CocoapodsPatch
VERSION = "1.2.0"
VERSION = "1.3.0"
end

0 comments on commit 276ae40

Please sign in to comment.