Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Sep 17, 2018
1 parent b10c581 commit 5e254aa
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 20 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.

#### 3.x Releases

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

#### 2.x Releases

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

---

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

Released on 2018-09-17. All issues associated with this milestone can be found using this
[filter](https://github.com/Nike-Inc/Elevate/milestone/9?closed=1).

#### 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
[#35](https://github.com/Nike-Inc/Elevate/pull/35).
- The podspec swift-version to 4.2.
- Updated by [Eric Jensen](https://github.com/ejensen) in Pull Request
[#35](https://github.com/Nike-Inc/Elevate/pull/35).
- 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
[#36](https://github.com/Nike-Inc/Elevate/pull/36).

#### Fixed

- Issue in the tests on iOS 8.4 by updating Travis to use newer OSX image.
- Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request
[#34](https://github.com/Nike-Inc/Elevate/pull/34).

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

Released on 2018-04-10. All issues associated with this milestone can be found using this
Expand Down
26 changes: 13 additions & 13 deletions Elevate.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Pod::Spec.new do |s|
s.name = 'Elevate'
s.version = '3.0.1'
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'
s.authors = { 'Eric Appel' => 'eric.appel@nike.com', 'Christian Noon' => 'christian.noon@nike.com' }
s.name = "Elevate"
s.version = "3.0.2"
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"
s.authors = { "Eric Appel" => "eric.appel@nike.com", "Christian Noon" => "christian.noon@nike.com" }

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

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.11"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
end
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@

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

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

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

- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 9.0+
- Swift 4.0+
- Xcode 9.3+
- Swift 4.1+

## Communication

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>3.0.1</string>
<string>3.0.2</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>3.0.1</string>
<string>3.0.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 5e254aa

Please sign in to comment.