Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 3.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Jan 13, 2017
1 parent addb479 commit 7485742
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 5 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
`Willow` adheres to [Semantic Versioning](http://semver.org/).

#### 3.x Releases

- `3.0.x` Releases - [3.0.0](#300)

#### 2.x Releases

- `2.0.x` Releases - [2.0.0](#200)
Expand All @@ -15,6 +19,51 @@ All notable changes to this project will be documented in this file.

---

## [3.0.0](https://github.com/Nike-Inc/Willow/releases/tag/3.0.0)

Released on 2017-01-13. All issues associated with this milestone can be found using this
[filter](https://github.com/Nike-Inc/Willow/milestone/4?closed=1).

#### Added

- A new `.swift-version` file for CocoaPods pointed at Swift 3.0.
- Added by [Christian Noon](https://github.com/cnoon).
- A migration guide for the Willow 3.0 release.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#21](https://github.com/Nike-Inc/Willow/pull/21).
- Support for `OSLogWriter` on macOS 10.12+ by removing preprocessor guards.
- Added by [Silvan Mosberger](https://github.com/Infinisil) in Pull Request
[#19](https://github.com/Nike-Inc/Willow/pull/19).

#### Updated

- The Travis-CI YAML file to Xcode 8.2 and the latest SDKs and destinations.
- Added by [Silvan Mosberger](https://github.com/Infinisil) in Pull Request
[#19](https://github.com/Nike-Inc/Willow/pull/19).
- The Travis-CI YAML file by re-enabling `pod lib lint` since lint issue is resolved.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#21](https://github.com/Nike-Inc/Willow/pull/21).
- The Xcode projects to Xcode 8.2 and disabled automatic signing on frameworks.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#21](https://github.com/Nike-Inc/Willow/pull/21).
- Instances of `OSX` with `macOS` including the framework and target names.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#21](https://github.com/Nike-Inc/Willow/pull/21).
- `ExecutionMethod` enum cases to be lowercased to match Swift API Design Guidelines.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#21](https://github.com/Nike-Inc/Willow/pull/21).

#### Fixed

- Crash in WriterTests on iOS and tvOS 9 where `os_log` APIs are not available.
- Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request
[#21](https://github.com/Nike-Inc/Willow/pull/21).
- Compiler warnings in the example app around private and fileprivate ACLs.
- Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request
[#21](https://github.com/Nike-Inc/Willow/pull/21).

---

## [2.0.0](https://github.com/Nike-Inc/Willow/releases/tag/2.0.0)

Released on 2016-09-07. All issues associated with this milestone can be found using this
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

pod 'Willow', '~> 2.0'
pod 'Willow', '~> 3.0'
```

Then, run the following command:
Expand All @@ -104,7 +104,7 @@ brew install carthage
To integrate Willow into your Xcode project using Carthage, specify it in your [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile):

```
github "Nike-Inc/Willow" ~> 2.0
github "Nike-Inc/Willow" ~> 3.0
```

Run `carthage update` to build the framework and drag the built `Willow.framework` into your Xcode project.
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>2.0.0</string>
<string>3.0.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>2.0.0</string>
<string>3.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Willow.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Willow'
s.version = '2.0.0'
s.version = '3.0.0'
s.license = 'MIT'
s.summary = 'A powerful, yet lightweight logging library written in Swift.'
s.homepage = 'https://github.com/Nike-Inc/Willow'
Expand Down

0 comments on commit 7485742

Please sign in to comment.