Skip to content

Commit

Permalink
v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
djih committed Nov 12, 2015
1 parent 0f4a1a9 commit 7cceece
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 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.2.0"
s.version = "3.2.1"
s.summary = "Amplitude mobile analytics iOS SDK."
s.homepage = "https://amplitude.com"
s.license = { :type => "MIT" }
s.author = { "Amplitude" => "[email protected]" }
s.source = { :git => "https://github.com/amplitude/Amplitude-iOS.git", :tag => "v3.2.0" }
s.source = { :git => "https://github.com/amplitude/Amplitude-iOS.git", :tag => "v3.2.1" }
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.2.0";
NSString *const kAMPVersion = @"3.2.1";
NSString *const kAMPEventLogDomain = @"api.amplitude.com";
NSString *const kAMPEventLogUrl = @"https://api.amplitude.com/";
const int kAMPApiVersion = 3;
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## Unreleased

## 3.2.1 (November 11, 2015)

* Handle NaNs and exceptions from NSJSONSerialization during event data migration.
* Fix bug where logEvent checks session when logging start/end session events.
* Update DatabaseHelper to work with long longs instead of longs.

## 3.2.0 (October 20, 2015)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A [demo application](https://github.com/amplitude/iOS-Demo) is available to show

# 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.2.0'`
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.2.1'`
3. Copy the Amplitude-iOS folder into the source of your project in XCode. Check "Copy items into destination group's folder (if needed)".

4. In every file that uses analytics, import Amplitude.h at the top:
Expand Down

0 comments on commit 7cceece

Please sign in to comment.