Xcode 10 and Swift 4.2
Released on 2018-09-17. All issues associated with this milestone can be found using this filter.
Added
- A
Logger.disabled
static variable that can be assigned to aLogger
variable. ThisLogger
will not write any messages sent to it.- Added by Eric Jensen in Pull Request #42.
Updated
- The Xcode workspace to be compatible with Xcode 10 and Swift 4.2.
- Updated by Eric Jensen in Pull Request #40.
- The podspec
swift-version
to4.2
.- Updated by Eric Jensen in Pull Request #43.
- The Travis-CI yaml file to build with Xcode 10 by leveraging bundler and a Gemfile.
- Updated by Christian Noon in Pull Request #44.
Deprecated
- The
Optional<Logger>
extensions are now deprecated. Use a non-optionalLogger
variable:var log: Logger? = nil
→var log: Logger = .disabled
.- Deprecated by Eric Jensen in Pull Request #42.