Skip to content

Commit

Permalink
[Analyzer] Implicitly unlock all local dependencies when installing.
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Aug 3, 2015
1 parent 2f0f946 commit 82edf68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Expand Up @@ -18,6 +18,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
[#3912](https://github.com/CocoaPods/CocoaPods/issues/3912)

* Implicitly unlock all local dependencies when installing.
[Samuel Giddins](https://github.com/segiddins)
[#3764](https://github.com/CocoaPods/CocoaPods/issues/3764)


## 0.38.2

Expand Down Expand Up @@ -3966,4 +3970,4 @@ allowing you to automate Xcode related tasks.
[4]: https://github.com/CocoaPods/Xcodeproj
[5]: https://github.com/tomaz/appledoc
[6]: https://github.com/CocoaPods/CocoaPods/compare/0.5.1...0.6.0
[7]: https://github.com/CocoaPods/CocoaPods/compare/0.3.10...0.5.0
[7]: https://github.com/CocoaPods/CocoaPods/compare/0.3.10...0.5.0
1 change: 1 addition & 0 deletions lib/cocoapods/installer/analyzer.rb
Expand Up @@ -397,6 +397,7 @@ def generate_version_locking_dependencies
else
pods_to_update = result.podfile_state.changed + result.podfile_state.deleted
pods_to_update += update[:pods] if update_mode == :selected
pods_to_update += podfile.dependencies.select(&:local?).map(&:name)
LockingDependencyAnalyzer.generate_version_locking_dependencies(lockfile, pods_to_update)
end
end
Expand Down

0 comments on commit 82edf68

Please sign in to comment.