Skip to content

Commit 8c30ce9

Browse files
cnoonEricAppel
authored andcommitted
Added release notes to the CHANGELOG and bumped the version to 2.1.0.
1 parent eba1cde commit 8c30ce9

File tree

4 files changed

+43
-4
lines changed

4 files changed

+43
-4
lines changed

CHANGELOG.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
55

66
#### 2.x Releases
77

8+
* `2.1.x` Releases = [2.1.0](#210)
89
* `2.0.x` Releases = [2.0.0](#200)
910

1011
#### 1.x Releases
@@ -14,9 +15,47 @@ All notable changes to this project will be documented in this file.
1415

1516
---
1617

18+
## [2.1.0](https://github.com/Nike-Inc/Elevate/releases/tag/2.1.0)
19+
20+
Released on 2016-11-21.
21+
22+
#### Added
23+
24+
- The `.swift-version` file pointing at Swift 3.0 to support CocoaPods.
25+
- Added by [Christian Noon](https://github.com/cnoon).
26+
- The `Encodable` protocol along with extensions for common types and unit tests.
27+
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
28+
[#21](https://github.com/Nike-Inc/Elevate/pull/21).
29+
- The `Encodable` section to the README and updated `Decodable` to use `KeyPath` struct.
30+
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
31+
[#21](https://github.com/Nike-Inc/Elevate/pull/21).
32+
33+
#### Updated
34+
35+
- The `Person` example to use an extension in the README.
36+
- Updated by [Rich Ellis](https://github.com/richellis) in Pull Request
37+
[#16](https://github.com/Nike-Inc/Elevate/pull/16).
38+
- Xcode project settings to latest defaults and disabled code signing.
39+
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
40+
[#21](https://github.com/Nike-Inc/Elevate/pull/21).
41+
- Xcode project by disabling code signing on all targets and removed duplicate code signing identities.
42+
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
43+
[#21](https://github.com/Nike-Inc/Elevate/pull/21).
44+
45+
#### Fixed
46+
47+
- Incorrect enum case in README for type arguments.
48+
- Fixed by [Dave Camp](https://github.com/AtomicCat) in Pull Request
49+
[#19](https://github.com/Nike-Inc/Elevate/pull/19).
50+
- Issue where incorrect parameter name was used in multiple decoders section of the README.
51+
- Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request
52+
[#20](https://github.com/Nike-Inc/Elevate/pull/20).
53+
54+
---
55+
1756
## [2.0.0](https://github.com/Nike-Inc/Elevate/releases/tag/2.0.0)
1857

19-
Released on 2016-09-08
58+
Released on 2016-09-08.
2059

2160
#### Added
2261

Elevate.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Elevate'
3-
s.version = '2.0.0'
3+
s.version = '2.1.0'
44
s.summary = 'Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable.'
55
s.homepage = 'https://github.com/Nike-Inc/Elevate'
66
s.license = 'MIT'

Source/Info-tvOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.0</string>
18+
<string>2.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Source/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.0</string>
18+
<string>2.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)