This repository has been archived by the owner on May 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Update ReactiveSwift to 3.1 and ReactiveCocoa to 7.1 #40
Open
james-lukanta-ck
wants to merge
5
commits into
RACCommunity:master
Choose a base branch
from
james-lukanta-ck:upgradeReactiveCocoaAndSwift
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update ReactiveSwift to 3.1 and ReactiveCocoa to 7.1 #40
james-lukanta-ck
wants to merge
5
commits into
RACCommunity:master
from
james-lukanta-ck:upgradeReactiveCocoaAndSwift
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
james-lukanta-ck
force-pushed
the
upgradeReactiveCocoaAndSwift
branch
2 times, most recently
from
April 20, 2018 13:25
cee2bdb
to
ad0fb58
Compare
james-lukanta-ck
force-pushed
the
upgradeReactiveCocoaAndSwift
branch
from
April 20, 2018 13:40
ad0fb58
to
7150ec1
Compare
ikesyo
reviewed
Apr 20, 2018
.travis.yml
Outdated
before_install: | ||
- brew uninstall carthage | ||
- HOMEBREW_NO_AUTO_UPDATE=1 brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/6ae4f69a652fb0ecb102b0c9216378679a4f1b92/Formula/carthage.rb # 0.22.0 | ||
- HOMEBREW_NO_AUTO_UPDATE=1 brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/45dd24d8dfa7a2fb69812c678ceb34be0c16e295/Formula/carthage.rb # 0.29.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This force upgrade should not be needed anymore. Could you please remove the before_install:
?
@ikesyo Thanks for the feedback. I have incorporated your suggestion. This PR now passes all checks. Do you have any other suggestion? Otherwise, can I please get an approval? |
@@ -102,7 +102,7 @@ extension ReactiveArray { | |||
public mutating func replaceSubrange<C>(_ subrange: Range<Int>, with newElements: C) where C: Collection, C.Iterator.Element == Element { | |||
elements.replaceSubrange(subrange, with: newElements) | |||
|
|||
let elementsCount = Int(newElements.count.toIntMax()) | |||
let elementsCount = newElements.count |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
toIntMax()
is deprecated in Swift 4.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change is needed to run
carthage update ReactiveCollections
on projects that use XCode 9.3 / Swift 4.1