diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb565b..0254e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Gemfile b/Gemfile index dc3ea1c..e4596cd 100644 --- a/Gemfile +++ b/Gemfile @@ -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' diff --git a/Gemfile.lock b/Gemfile.lock index 4e6cb39..a8dcdf2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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/ @@ -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) @@ -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) @@ -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) @@ -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 diff --git a/cocoapods-patch.gemspec b/cocoapods-patch.gemspec index d32264b..8a6c1d5 100644 --- a/cocoapods-patch.gemspec +++ b/cocoapods-patch.gemspec @@ -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' diff --git a/lib/cocoapods_patch.rb b/lib/cocoapods_patch.rb index be21802..520238c 100644 --- a/lib/cocoapods_patch.rb +++ b/lib/cocoapods_patch.rb @@ -1,3 +1,3 @@ module CocoapodsPatch - VERSION = "1.2.0" + VERSION = "1.3.0" end