diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bc97af..31639a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. #### 5.x Releases +- `5.1.x` Releases - [5.1.0](#510) - `5.0.x` Releases - [5.0.0](#500) | [5.0.1](#501) | [5.0.2](#502) #### 4.x Releases @@ -31,22 +32,49 @@ All notable changes to this project will be documented in this file. #### 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. - #### Deprecated -- The `Optional` extensions are now deprecated. Use a non-optional `Logger` variable: `var log: Logger? = nil` → `var log: Logger = .disabled`. - #### Removed #### Fixed --- +## [5.1.0](https://github.com/Nike-Inc/Willow/releases/tag/5.1.0) + +Released on 2018-09-17. All issues associated with this milestone can be found using this +[filter](https://github.com/Nike-Inc/Willow/milestone/10?closed=1). + +#### Added + +- A `Logger.disabled` static variable that can be assigned to a `Logger` variable. + This `Logger` will not write any messages sent to it. + - Added by [Eric Jensen](https://github.com/ejensen) in Pull Request + [#42](https://github.com/Nike-Inc/Willow/pull/42). + +#### Updated + +- The Xcode workspace to be compatible with Xcode 10 and Swift 4.2. + - Updated by [Eric Jensen](https://github.com/ejensen) in Pull Request + [#40](https://github.com/Nike-Inc/Willow/pull/40). +- The podspec `swift-version` to `4.2`. + - Updated by [Eric Jensen](https://github.com/ejensen) in Pull Request + [#43](https://github.com/Nike-Inc/Willow/pull/43). +- The Travis-CI yaml file to build with Xcode 10 by leveraging bundler and a Gemfile. + - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request + [#44](https://github.com/Nike-Inc/Willow/pull/44). + +#### Deprecated + +- The `Optional` extensions are now deprecated. + Use a non-optional `Logger` variable: `var log: Logger? = nil` → `var log: Logger = .disabled`. + - Deprecated by [Eric Jensen](https://github.com/ejensen) in Pull Request + [#42](https://github.com/Nike-Inc/Willow/pull/42). + +--- + ## [5.0.2](https://github.com/Nike-Inc/Willow/releases/tag/5.0.2) Released on 2018-04-10. All issues associated with this milestone can be found using this diff --git a/Source/Info-tvOS.plist b/Source/Info-tvOS.plist index 8b06260..532bdae 100644 --- a/Source/Info-tvOS.plist +++ b/Source/Info-tvOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.0.2 + 5.1.0 CFBundleSignature ???? CFBundleVersion diff --git a/Source/Info.plist b/Source/Info.plist index 821c205..5313a0d 100644 --- a/Source/Info.plist +++ b/Source/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.0.2 + 5.1.0 CFBundleSignature ???? CFBundleVersion diff --git a/Willow.podspec b/Willow.podspec index 03e4680..6b0c9f5 100644 --- a/Willow.podspec +++ b/Willow.podspec @@ -1,18 +1,18 @@ Pod::Spec.new do |s| - s.name = 'Willow' - s.version = '5.0.2' - s.license = 'MIT' - s.summary = 'A powerful, yet lightweight logging library written in Swift.' - s.homepage = 'https://github.com/Nike-Inc/Willow' - s.social_media_url = 'https://twitter.com/Christian_Noon' - s.authors = { 'Christian Noon' => 'christian.noon@nike.com', 'Eric Appel' => 'eric.appel@nike.com' } + s.name = "Willow" + s.version = "5.1.0" + s.license = "MIT" + s.summary = "A powerful, yet lightweight logging library written in Swift." + s.homepage = "https://github.com/Nike-Inc/Willow" + s.social_media_url = "https://twitter.com/Christian_Noon" + s.authors = { "Christian Noon" => "christian.noon@nike.com", "Eric Appel" => "eric.appel@nike.com" } - s.source = { :git => 'https://github.com/Nike-Inc/Willow.git', :tag => s.version } - s.source_files = 'Source/*.swift' - s.swift_version = '4.2' + s.source = { :git => "https://github.com/Nike-Inc/Willow.git", :tag => s.version } + s.source_files = "Source/*.swift" + s.swift_version = "4.2" - s.ios.deployment_target = '9.0' - s.osx.deployment_target = '10.11' - s.tvos.deployment_target = '9.0' - s.watchos.deployment_target = '2.0' + s.ios.deployment_target = "9.0" + s.osx.deployment_target = "10.11" + s.tvos.deployment_target = "9.0" + s.watchos.deployment_target = "2.0" end diff --git a/Willow.xcodeproj/project.pbxproj b/Willow.xcodeproj/project.pbxproj index e6e85cf..f716341 100644 --- a/Willow.xcodeproj/project.pbxproj +++ b/Willow.xcodeproj/project.pbxproj @@ -101,7 +101,7 @@ 4CD142361F572F6C002D6006 /* Willow 2.0 Migration Guide.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = "Willow 2.0 Migration Guide.md"; path = "Documentation/Willow 2.0 Migration Guide.md"; sourceTree = ""; }; 4CD142371F572F6C002D6006 /* Willow 3.0 Migration Guide.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = "Willow 3.0 Migration Guide.md"; path = "Documentation/Willow 3.0 Migration Guide.md"; sourceTree = ""; }; 4CD142381F572F6C002D6006 /* Willow 4.0 Migration Guide.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = "Willow 4.0 Migration Guide.md"; path = "Documentation/Willow 4.0 Migration Guide.md"; sourceTree = ""; }; - 4CD9E067207C3DF700D02902 /* .travis.yml */ = {isa = PBXFileReference; lastKnownFileType = text; name = .travis.yml; path = .travis.yml; sourceTree = ""; }; + 4CD9E067207C3DF700D02902 /* .travis.yml */ = {isa = PBXFileReference; lastKnownFileType = text; path = .travis.yml; sourceTree = ""; }; 4CF3EBD71F72FB5D00ECFA06 /* Willow 5.0 Migration Guide.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = "Willow 5.0 Migration Guide.md"; path = "Documentation/Willow 5.0 Migration Guide.md"; sourceTree = ""; }; 4CF89C8B1A6E2F60001BFDE1 /* Willow.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Willow.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4CF89C951A6E2F60001BFDE1 /* WillowTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = WillowTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };