-
Notifications
You must be signed in to change notification settings - Fork 13
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
Update to Zewo 0.13 #17
Conversation
- changing `ErrorProtocol` to `Error` - importing `Core` - `StringLiteralConvertible` -> `ExpressibleByStringLiteral` - string `split` -> `components`
} | ||
|
||
public protocol ConnectionProtocol: class { | ||
associatedtype InternalStatus | ||
associatedtype Result: ResultProtocol | ||
associatedtype Error: ErrorProtocol, CustomStringConvertible | ||
associatedtype ErrorAndStringConvertible: Error, CustomStringConvertible |
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.
Any reason you named this ErrorAndStringConvertible? It reads a lot nicer as Error
even if it is CustomStringConvertible
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.
I assume it's because Error
is a reserved name by swift now. I'll change it to ConnectionError
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.
Fixed :)
- Fix .gitignore, .swift-version, .travis.yml, LICENSE - Remove license headers from files - Remove trailing whitespace from all files - ErrorAndStringConvertible -> ConnectionError
I rebased on master and fixed a few things. Your part looks good! Once CI passes I'll merge 👍 |
Excellent! Merging |
Tries to update package to use Zewo 0.13, swift 3.0