Skip to content

Commit

Permalink
Add support for integrating on demand resources.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimu.xjy authored and dnkoutso committed Jul 27, 2021
1 parent 804eed5 commit fb5ba46
Show file tree
Hide file tree
Showing 54 changed files with 1,812 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,13 @@ To install release candidates run `[sudo] gem install cocoapods --pre`

##### Enhancements

* Add support for integrating on demand resources.
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
[JunyiXie](https://github.com/JunyiXie)
[#9606](https://github.com/CocoaPods/CocoaPods/issues/9606)

* Add a post_integrate_hook API

* Add the App Clip product symbol to the list of products that need embedding.
[Igor Makarov](https://github.com/igor-makarov)
[#9882](https://github.com/CocoaPods/CocoaPods/pull/9882)
Expand Down
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT

GIT
remote: https://github.com/CocoaPods/Core.git
revision: a74cd59171d0095369641e764e67e7b39ef105e7
revision: 65301d4484802acd39eb70e2cdf75268607d1077
branch: master
specs:
cocoapods-core (1.10.1)
Expand All @@ -30,17 +30,17 @@ GIT

GIT
remote: https://github.com/CocoaPods/Nanaimo.git
revision: 30bd8ecd80d7530c5f50029e1e67812170c91e96
revision: 1bf2e6e8781045fed99ca7020d5007234e715dc8
branch: master
specs:
nanaimo (0.3.0)

GIT
remote: https://github.com/CocoaPods/Xcodeproj.git
revision: 9431cddc5dd196d62db32065fd49d58810cc11c1
revision: eeccae7275645753cbaf45d96fc4b23e4b8b3b9f
branch: master
specs:
xcodeproj (1.19.0)
xcodeproj (1.20.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
Expand Down Expand Up @@ -119,7 +119,7 @@ PATH
molinillo (~> 0.7.0)
nap (~> 1.0)
ruby-macho (>= 1.0, < 3.0)
xcodeproj (>= 1.19.0, < 2.0)
xcodeproj (>= 1.20.0, < 2.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -242,7 +242,7 @@ GEM
rb-kqueue (0.2.3)
ffi (>= 0.5.0)
rchardet (1.8.0)
rexml (3.2.4)
rexml (3.2.5)
rubocop (0.50.0)
parallel (~> 1.10)
parser (>= 2.3.3.1, < 3.0)
Expand Down
2 changes: 1 addition & 1 deletion cocoapods.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'cocoapods-trunk', '>= 1.4.0', '< 2.0'
s.add_runtime_dependency 'cocoapods-try', '>= 1.1.0', '< 2.0'
s.add_runtime_dependency 'molinillo', '~> 0.7.0'
s.add_runtime_dependency 'xcodeproj', '>= 1.19.0', '< 2.0'
s.add_runtime_dependency 'xcodeproj', '>= 1.20.0', '< 2.0'

s.add_runtime_dependency 'colored2', '~> 3.1'
s.add_runtime_dependency 'escape', '~> 0.0.4'
Expand Down

0 comments on commit fb5ba46

Please sign in to comment.