Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 2.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Jan 14, 2017
1 parent 9037fe0 commit dcf4aad
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 7 deletions.
44 changes: 43 additions & 1 deletion 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.

#### 2.x Releases

* `2.2.x` Releases = [2.2.0](#220)
* `2.1.x` Releases = [2.1.0](#210)
* `2.0.x` Releases = [2.0.0](#200)

Expand All @@ -15,9 +16,50 @@ All notable changes to this project will be documented in this file.

---

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

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

#### Added

- `Decodable` conformance for Dictionary types along with tests.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#25](https://github.com/Nike-Inc/Elevate/pull/25).

#### Updated

- `Decodable` test names, failure messages and general structure.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#25](https://github.com/Nike-Inc/Elevate/pull/25).
- Primitive `Decodable` implementations by removing unnecessary toll-free bridging.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#25](https://github.com/Nike-Inc/Elevate/pull/25).
- The Xcode project to Xcode 8.2 and disabled automatic signing for frameworks.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#26](https://github.com/Nike-Inc/Elevate/pull/26).
- The project by refactoring `OSX` to `macOS` throughout along with the target names.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#26](https://github.com/Nike-Inc/Elevate/pull/26).
- The travis yaml file to the `xcode8.2` image and updated platforms and destinations.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#26](https://github.com/Nike-Inc/Elevate/pull/26).
- The docstrings throughout codebase to use latest Xcode syntax.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#26](https://github.com/Nike-Inc/Elevate/pull/26).

#### Fixed

- Typo in `primitive` spelling throughout codebase...no breaking public API changes.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#25](https://github.com/Nike-Inc/Elevate/pull/25).

---

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

Released on 2016-11-27.
Released on 2016-11-27. All issues associated with this milestone can be found using this
[filter](https://github.com/Nike-Inc/Elevate/milestone/2?closed=1).

#### Added

Expand Down
2 changes: 1 addition & 1 deletion Elevate.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Elevate'
s.version = '2.1.0'
s.version = '2.2.0'
s.summary = 'Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable.'
s.homepage = 'https://github.com/Nike-Inc/Elevate'
s.license = 'MIT'
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Elevate is a JSON parsing framework that leverages Swift to make parsing simple,
## Requirements

- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 8.0+
- Xcode 8.2+
- Swift 3.0+

## Communication
Expand Down Expand Up @@ -48,7 +48,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

pod 'Elevate', '~> 2.0'
pod 'Elevate', '~> 2.2'
```

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

```bash
github "Nike-Inc/Elevate" ~> 2.0
github "Nike-Inc/Elevate" ~> 2.2
```

To build Elevate on iOS only, use the following Carthage command:
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.1.0</string>
<string>2.2.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.1.0</string>
<string>2.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit dcf4aad

Please sign in to comment.