Skip to content

Commit eb4e5e7

Browse files
committed
Added release notes to the CHANGELOG and bumped the version to 3.0.0.
1 parent abd0cb3 commit eb4e5e7

File tree

5 files changed

+29
-9
lines changed

5 files changed

+29
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
`Elevate` adheres to [Semantic Versioning](http://semver.org/).
55

6+
#### 3.x Releases
7+
8+
* `3.0.x` Releases = [3.0.0](#300)
9+
610
#### 2.x Releases
711

812
* `2.2.x` Releases = [2.2.0](#220) | [2.2.1](#221) | [2.2.2](#222)
@@ -16,6 +20,19 @@ All notable changes to this project will be documented in this file.
1620

1721
---
1822

23+
## [3.0.0](https://github.com/Nike-Inc/Elevate/releases/tag/3.0.0)
24+
25+
Released on 2017-08-29. All issues associated with this milestone can be found using this
26+
[filter](https://github.com/Nike-Inc/Elevate/milestone/6?closed=1).
27+
28+
#### Updated
29+
30+
- The Xcode project and all source and test code to compile against Swift 4.0.
31+
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
32+
[#31](https://github.com/Nike-Inc/Elevate/pull/31).
33+
34+
---
35+
1936
## [2.2.2](https://github.com/Nike-Inc/Elevate/releases/tag/2.2.2)
2037

2138
Released on 2017-08-29. All issues associated with this milestone can be found using this

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.2.2'
3+
s.version = '3.0.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'

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +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.
12+
1013
## Features
1114

1215
- [X] Validation of full JSON payload
@@ -19,8 +22,8 @@ Elevate is a JSON parsing framework that leverages Swift to make parsing simple,
1922
## Requirements
2023

2124
- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
22-
- Xcode 8.2+
23-
- Swift 3.0+
25+
- Xcode 9.0+
26+
- Swift 4.0+
2427

2528
## Communication
2629

@@ -40,16 +43,16 @@ You can install it with the following command:
4043
[sudo] gem install cocoapods
4144
```
4245

43-
> CocoaPods 1.0+ is required.
46+
> CocoaPods 1.3+ is required.
4447
4548
To integrate Elevate into your Xcode project using CocoaPods, specify it in your [Podfile](http://guides.cocoapods.org/using/the-podfile.html):
4649

4750
```ruby
4851
source 'https://github.com/CocoaPods/Specs.git'
49-
platform :ios, '10.0'
52+
platform :ios, '11.0'
5053
use_frameworks!
5154

52-
pod 'Elevate', '~> 2.2'
55+
pod 'Elevate', '~> 3.0'
5356
```
5457

5558
### Carthage
@@ -66,7 +69,7 @@ brew install carthage
6669
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):
6770

6871
```bash
69-
github "Nike-Inc/Elevate" ~> 2.2
72+
github "Nike-Inc/Elevate" ~> 3.0
7073
```
7174

7275
To build Elevate on iOS only, use the following Carthage command:

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.2.2</string>
18+
<string>3.0.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.2.2</string>
18+
<string>3.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)