Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 1-15 stable #12223

Merged
merged 2 commits into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ To install release candidates run `[sudo] gem install cocoapods --pre`

##### Enhancements

* None.

##### Bug Fixes

* None.


## 1.15.0 (2024-01-28)

##### Enhancements

* Optimize performance during uncached pod installation.
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
[#12154](https://github.com/CocoaPods/CocoaPods/pull/12154)
Expand Down
18 changes: 9 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ GIT

GIT
remote: https://github.com/CocoaPods/Core.git
revision: 1f4c2c52e2b21ab8988313f138758d406db91d9b
revision: 745dbe57344b958c63e8f3cd8afbbcb091519f62
branch: master
specs:
cocoapods-core (1.14.3)
cocoapods-core (1.15.0)
activesupport (>= 5.0, < 8)
addressable (~> 2.8)
algoliasearch (~> 1.0)
Expand All @@ -37,7 +37,7 @@ GIT

GIT
remote: https://github.com/CocoaPods/Xcodeproj.git
revision: de61027e8d4e3c4e9eccac2f190ee504c5b99be5
revision: 2328a5087067abad3a548a2065021827b4f24072
branch: master
specs:
xcodeproj (1.23.0)
Expand Down Expand Up @@ -119,10 +119,10 @@ GIT
PATH
remote: .
specs:
cocoapods (1.14.3)
cocoapods (1.15.0)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.14.3)
cocoapods-core (= 1.15.0)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 2.1, < 3.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
Expand All @@ -149,7 +149,7 @@ GEM
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.5)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
Expand All @@ -168,7 +168,7 @@ GEM
pry (= 0.10.3)
coderay (1.1.3)
colored2 (3.1.2)
concurrent-ruby (1.2.2)
concurrent-ruby (1.2.3)
cork (0.3.0)
colored2 (~> 3.1)
crack (0.4.5)
Expand Down Expand Up @@ -232,7 +232,7 @@ GEM
sparkr (>= 0.2.0)
term-ansicolor
yard (~> 0.9.12)
json (2.6.3)
json (2.7.1)
kicker (3.0.0)
listen (~> 1.3.0)
notify (~> 0.5.2)
Expand All @@ -246,7 +246,7 @@ GEM
rb-kqueue (>= 0.2)
metaclass (0.0.4)
method_source (0.8.2)
minitest (5.20.0)
minitest (5.21.2)
mocha (1.4.0)
metaclass (~> 0.0.1)
mocha-on-bacon (0.2.3)
Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods/gem_version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Pod
# The version of the CocoaPods command line tool.
#
VERSION = '1.14.3'.freeze unless defined? Pod::VERSION
VERSION = '1.15.0'.freeze unless defined? Pod::VERSION
end
Loading