Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Sep 17, 2018
1 parent a28f3af commit d1304b6
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 23 deletions.
40 changes: 34 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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<Logger>` 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<Logger>` 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
Expand Down
2 changes: 1 addition & 1 deletion Source/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.0.2</string>
<string>5.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.0.2</string>
<string>5.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
28 changes: 14 additions & 14 deletions Willow.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]', 'Eric Appel' => '[email protected]' }
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" => "[email protected]", "Eric Appel" => "[email protected]" }

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
2 changes: 1 addition & 1 deletion Willow.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "<group>"; };
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 = "<group>"; };
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 = "<group>"; };
4CD9E067207C3DF700D02902 /* .travis.yml */ = {isa = PBXFileReference; lastKnownFileType = text; name = .travis.yml; path = .travis.yml; sourceTree = "<group>"; };
4CD9E067207C3DF700D02902 /* .travis.yml */ = {isa = PBXFileReference; lastKnownFileType = text; path = .travis.yml; sourceTree = "<group>"; };
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 = "<group>"; };
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; };
Expand Down

0 comments on commit d1304b6

Please sign in to comment.