From d3ed9f1cec272ec32297e4bc094c6a0d05f5cff1 Mon Sep 17 00:00:00 2001 From: Daniel Jih Date: Wed, 25 Jan 2017 17:37:00 -0800 Subject: [PATCH] v3.13.0 --- Amplitude-iOS.podspec | 4 ++-- Amplitude/AMPConstants.m | 2 +- CHANGELOG.md | 3 +++ README.md | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Amplitude-iOS.podspec b/Amplitude-iOS.podspec index 3ef4a153..d828d104 100644 --- a/Amplitude-iOS.podspec +++ b/Amplitude-iOS.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = "Amplitude-iOS" - s.version = "3.12.1" + s.version = "3.13.0" s.summary = "Amplitude mobile analytics iOS SDK." s.homepage = "https://amplitude.com" s.license = { :type => "MIT" } s.author = { "Amplitude" => "dev@amplitude.com" } - s.source = { :git => "https://github.com/amplitude/Amplitude-iOS.git", :tag => "v3.12.1" } + s.source = { :git => "https://github.com/amplitude/Amplitude-iOS.git", :tag => "v3.13.0" } s.ios.deployment_target = '6.0' s.tvos.deployment_target = '9.0' s.source_files = 'Amplitude/*.{h,m}' diff --git a/Amplitude/AMPConstants.m b/Amplitude/AMPConstants.m index e8ca62fb..e97d65a2 100644 --- a/Amplitude/AMPConstants.m +++ b/Amplitude/AMPConstants.m @@ -4,7 +4,7 @@ #import "AMPConstants.h" NSString *const kAMPLibrary = @"amplitude-ios"; -NSString *const kAMPVersion = @"3.12.1"; +NSString *const kAMPVersion = @"3.13.0"; NSString *const kAMPEventLogDomain = @"api.amplitude.com"; NSString *const kAMPEventLogUrl = @"https://api.amplitude.com/"; NSString *const kAMPDefaultInstance = @"$default_instance"; diff --git a/CHANGELOG.md b/CHANGELOG.md index e4ddaef8..0f101b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ ## Unreleased +### 3.13.0 (January 30, 2017) + * Add support for tvOS. Thanks to @gabek for the original PR. See [Readme](https://github.com/amplitude/Amplitude-iOS#tvOS) for more information. * Bump iOS minimum deployment target to 6.0. +* Update device list. Thanks to @subbotkin for the PR. ### 3.12.1 (December 15, 2016) diff --git a/README.md b/README.md index e2689228..083f2ff8 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Our iOS SDK also supports tvOS. See [below](https://github.com/amplitude/Amplitu 2. [Download the source code](https://github.com/amplitude/Amplitude-iOS/archive/master.zip) and extract the zip file. - Alternatively, you can pull directly from GitHub. If you use CocoaPods, add the following line to your Podfile: `pod 'Amplitude-iOS', '~> 3.12.1'`. If you are using CocoaPods, you may skip steps 3 and 4. + Alternatively, you can pull directly from GitHub. If you use CocoaPods, add the following line to your Podfile: `pod 'Amplitude-iOS', '~> 3.13.0'`. If you are using CocoaPods, you may skip steps 3 and 4. You also have the option to install using Carthage. If you are using Carthage, add the following line to your Cartfile: `github "amplitude/Amplitude-iOS"`. Just add `#import ` to import all of the Amplitude header files.