Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release - Prepping Elevate 2.2.0 Release #26

Merged
merged 6 commits into from
Jan 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
language: objective-c
osx_image: xcode8
osx_image: xcode8.2
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- PROJECT=Elevate.xcodeproj
- IOS_FRAMEWORK_SCHEME="Elevate iOS"
- OSX_FRAMEWORK_SCHEME="Elevate OSX"
- MACOS_FRAMEWORK_SCHEME="Elevate macOS"
- TVOS_FRAMEWORK_SCHEME="Elevate tvOS"
- WATCHOS_FRAMEWORK_SCHEME="Elevate watchOS"
- IOS_SDK=iphonesimulator10.0
- IOS_SDK=iphonesimulator10.2
- OSX_SDK=macosx10.12
- TVOS_SDK=appletvsimulator10.0
- WATCHOS_SDK=watchsimulator3.0
- TVOS_SDK=appletvsimulator10.1
- WATCHOS_SDK=watchsimulator3.1
matrix:
- DESTINATION="OS=10.0,name=iPhone 7" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="YES"
- DESTINATION="OS=10.0,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=9.1,name=iPhone 5" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="arch=x86_64" SCHEME="$OSX_FRAMEWORK_SCHEME" SDK="$OSX_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=10.0,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" SDK="$TVOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=3.0,name=Apple Watch - 42mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" SDK="$WATCHOS_SDK" RUN_TESTS="NO" POD_LINT="NO"
- DESTINATION="OS=10.2,name=iPhone 7" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="YES"
- DESTINATION="OS=10.1,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=9.1,name=iPhone 5" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" SDK="$OSX_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=10.0,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" SDK="$TVOS_SDK" RUN_TESTS="YES" POD_LINT="NO"
- DESTINATION="OS=3.1,name=Apple Watch Series 2 - 42mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" SDK="$WATCHOS_SDK" RUN_TESTS="NO" POD_LINT="NO"
script:
- set -o pipefail
- xcodebuild -version
Expand Down
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
Loading