Skip to content

Commit

Permalink
v3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djih committed Dec 6, 2016
1 parent b689923 commit 806f63a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Amplitude-iOS.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "Amplitude-iOS"
s.version = "3.11.1"
s.version = "3.12.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.11.1" }
s.source = { :git => "https://github.com/amplitude/Amplitude-iOS.git", :tag => "v3.12.0" }
s.platform = :ios, '5.0'
s.source_files = 'Amplitude/*.{h,m}'
s.requires_arc = true
Expand Down
2 changes: 1 addition & 1 deletion Amplitude/AMPConstants.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

NSString *const kAMPLibrary = @"amplitude-ios";
NSString *const kAMPPlatform = @"iOS";
NSString *const kAMPVersion = @"3.11.1";
NSString *const kAMPVersion = @"3.12.0";
NSString *const kAMPEventLogDomain = @"api.amplitude.com";
NSString *const kAMPEventLogUrl = @"https://api.amplitude.com/";
NSString *const kAMPDefaultInstance = @"$default_instance";
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

### 3.12.0 (December 5, 2016)

* Add helper method to regenerate a new random deviceId. This can be used in conjunction with `setUserId:nil` to anonymize a user after they log out. Note this is not recommended unless you know what you are doing. See [Readme](https://github.com/amplitude/Amplitude-iOS#logging-out-and-anonymous-users) for more information.

### 3.11.1 (November 7, 2016)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ A [demo application](https://github.com/amplitude/iOS-Demo) is available to show

A [demo application](https://github.com/amplitude/iOS-Extension-Demo) is available to show a simple integration in iOS extensions.

See our [SDK documentation](https://rawgit.com/amplitude/Amplitude-iOS/v3.11.1/documentation/html/index.html) for a description of all available SDK methods and classes.
See our [SDK documentation](https://rawgit.com/amplitude/Amplitude-iOS/v3.12.0/documentation/html/index.html) for a description of all available SDK methods and classes.

# Setup #
1. If you haven't already, go to https://amplitude.com and register for an account. You will receive an API Key.

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.11.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.12.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 <Amplitude/Amplitude.h>` to import all of the Amplitude header files.

Expand Down

0 comments on commit 806f63a

Please sign in to comment.