diff --git a/CHANGELOG.md b/CHANGELOG.md index 817e1fe..61beb2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [0.9.1] - 2016-11-23 +### Added +- Adds gzip compression to event body +- Adds location configuration to Sift.h + ## [0.9.0] - 2016-11-01 ### Added - Collect app states, motion sensor data, location, and more diff --git a/Sift.podspec b/Sift.podspec index 165c237..89f78a6 100644 --- a/Sift.podspec +++ b/Sift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'Sift' - spec.version = '0.9.0' + spec.version = '0.9.1' spec.authors = 'Sift Science' spec.license = { :type => 'MIT', diff --git a/Sift/Sift.m b/Sift/Sift.m index 77c8ee2..4ad3201 100644 --- a/Sift/Sift.m +++ b/Sift/Sift.m @@ -56,7 +56,7 @@ + (instancetype)sharedInstance { - (instancetype)initWithRootDirPath:(NSString *)rootDirPath { self = [super init]; if (self) { - _sdkVersion = @"v0.9.0"; + _sdkVersion = @"v0.9.1"; _rootDirPath = rootDirPath;