Skip to content

Commit 5e254aa

Browse files
committed
Added release notes to the CHANGELOG and bumped the version to 3.0.2
1 parent b10c581 commit 5e254aa

File tree

5 files changed

+44
-20
lines changed

5 files changed

+44
-20
lines changed

CHANGELOG.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55

66
#### 3.x Releases
77

8-
* `3.0.x` Releases = [3.0.0](#300) | [3.0.1](#301)
8+
* `3.0.x` Releases = [3.0.0](#300) | [3.0.1](#301) | [3.0.2](#302)
99

1010
#### 2.x Releases
1111

@@ -20,6 +20,29 @@ All notable changes to this project will be documented in this file.
2020

2121
---
2222

23+
## [3.0.2](https://github.com/Nike-Inc/Elevate/releases/tag/3.0.2)
24+
25+
Released on 2018-09-17. All issues associated with this milestone can be found using this
26+
[filter](https://github.com/Nike-Inc/Elevate/milestone/9?closed=1).
27+
28+
#### Updated
29+
30+
- The Xcode workspace to be compatible with Xcode 10 and Swift 4.2.
31+
- Updated by [Eric Jensen](https://github.com/ejensen) in Pull Request
32+
[#35](https://github.com/Nike-Inc/Elevate/pull/35).
33+
- The podspec swift-version to 4.2.
34+
- Updated by [Eric Jensen](https://github.com/ejensen) in Pull Request
35+
[#35](https://github.com/Nike-Inc/Elevate/pull/35).
36+
- The Travis-CI yaml file to build with Xcode 10 by leveraging bundler and a Gemfile.
37+
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
38+
[#36](https://github.com/Nike-Inc/Elevate/pull/36).
39+
40+
#### Fixed
41+
42+
- Issue in the tests on iOS 8.4 by updating Travis to use newer OSX image.
43+
- Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request
44+
[#34](https://github.com/Nike-Inc/Elevate/pull/34).
45+
2346
## [3.0.1](https://github.com/Nike-Inc/Elevate/releases/tag/3.0.1)
2447

2548
Released on 2018-04-10. All issues associated with this milestone can be found using this

Elevate.podspec

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
Pod::Spec.new do |s|
2-
s.name = 'Elevate'
3-
s.version = '3.0.1'
4-
s.summary = 'Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable.'
5-
s.homepage = 'https://github.com/Nike-Inc/Elevate'
6-
s.license = 'MIT'
7-
s.authors = { 'Eric Appel' => '[email protected]', 'Christian Noon' => '[email protected]' }
2+
s.name = "Elevate"
3+
s.version = "3.0.2"
4+
s.summary = "Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable."
5+
s.homepage = "https://github.com/Nike-Inc/Elevate"
6+
s.license = "MIT"
7+
s.authors = { "Eric Appel" => "[email protected]", "Christian Noon" => "[email protected]" }
88

9-
s.source = { :git => 'https://github.com/Nike-Inc/Elevate.git', :tag => s.version }
10-
s.source_files = 'Source/*.swift'
11-
s.swift_version = '4.2'
9+
s.source = { :git => "https://github.com/Nike-Inc/Elevate.git", :tag => s.version }
10+
s.source_files = "Source/*.swift"
11+
s.swift_version = "4.2"
1212

13-
s.ios.deployment_target = '8.0'
14-
s.osx.deployment_target = '10.11'
15-
s.tvos.deployment_target = '9.0'
16-
s.watchos.deployment_target = '2.0'
13+
s.ios.deployment_target = "8.0"
14+
s.osx.deployment_target = "10.11"
15+
s.tvos.deployment_target = "9.0"
16+
s.watchos.deployment_target = "2.0"
1717
end

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77

88
Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable.
99

10-
> Elevate has been **OFFICIALLY DEPRECATED** in favor of the `Codable` protocol provided by Apple in the `Foundation` framework.
11-
We will continue to support Elevate throughout the Xcode 9 lifespan.
10+
> Elevate should no longer be used for new feature development.
11+
> We recommend using the `Codable` protocol provided by Apple in the `Foundation` framework in its place.
12+
> We will continue to support and update Elevate for the foreseeable future.
1213
1314
## Features
1415

@@ -22,8 +23,8 @@ We will continue to support Elevate throughout the Xcode 9 lifespan.
2223
## Requirements
2324

2425
- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
25-
- Xcode 9.0+
26-
- Swift 4.0+
26+
- Xcode 9.3+
27+
- Swift 4.1+
2728

2829
## Communication
2930

Source/Info-tvOS.plist

+1-1
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>3.0.1</string>
18+
<string>3.0.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Source/Info.plist

+1-1
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>3.0.1</string>
18+
<string>3.0.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)