Skip to content

Xcode 10 and Swift 4.2

Compare
Choose a tag to compare
@cnoon cnoon released this 17 Sep 16:34

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 a Logger variable. This Logger will not write any messages sent to it.

Updated

  • The Xcode workspace to be compatible with Xcode 10 and Swift 4.2.
  • The podspec swift-version to 4.2.
  • The Travis-CI yaml file to build with Xcode 10 by leveraging bundler and a Gemfile.

Deprecated

  • The Optional<Logger> extensions are now deprecated. Use a non-optional Logger variable: var log: Logger? = nilvar log: Logger = .disabled.