From 50a923a72a188f5b5afdd1634269943333f6f492 Mon Sep 17 00:00:00 2001 From: Tung Vu <53031642+tung-vu-td@users.noreply.github.com> Date: Fri, 20 Aug 2021 09:05:27 +0700 Subject: [PATCH] Release 0.8.1 (#102) --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- TreasureData-iOS-SDK.podspec | 4 ++-- TreasureData/TDClient.m | 2 +- TreasureDataExample/Podfile | 1 - 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5ce0b4..0dde012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## Version 0.8.1 +_2020-08-19_ + +* Fix using wrong version of KeenClientTD (should be 3.3.0). + ## Version 0.8.0 _2020-12-03_ diff --git a/README.md b/README.md index 20e3dcd..00d85e8 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ $ gem install cocoapods Next, add this line in your Podfile. ``` -pod 'TreasureData-iOS-SDK', '= 0.8.0' +pod 'TreasureData-iOS-SDK', '= 0.8.1' ``` If you use the SDK in Swift, add this line to your Podfile. @@ -38,7 +38,7 @@ Remember to reopen your project by opening .xcworkspace file instead of .xcodepr ### Framework -Download [TreasureData.framework](http://cdn.treasuredata.com/sdk/ios/0.8.0/TreasureData-iOS-SDK.framework.zip) and add it and `libz` library into your project. +Download [TreasureData.framework](http://cdn.treasuredata.com/sdk/ios/0.8.1/TreasureData-iOS-SDK.framework.zip) and add it and `libz` library into your project. ## Usage in Objective-C diff --git a/TreasureData-iOS-SDK.podspec b/TreasureData-iOS-SDK.podspec index 9f73c28..906ce9d 100644 --- a/TreasureData-iOS-SDK.podspec +++ b/TreasureData-iOS-SDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "TreasureData-iOS-SDK" - s.version = "0.8.0" + s.version = "0.8.1" s.summary = "TreasureData SDK for iOS." s.license = "Apache" s.authors = { "mitsu" => "mitsu@treasure-data.com", @@ -13,6 +13,6 @@ Pod::Spec.new do |s| s.library = 'z' s.frameworks = 'Security', 'StoreKit' s.public_header_files = ["TreasureData/TreasureData.h", "TreasureData/TDClient.h", "TreasureData/TDRequestOptionsKey.h"] - s.dependency "KeenClientTD", '= 3.2.35' + s.dependency "KeenClientTD", '= 3.3.0' s.requires_arc = true end diff --git a/TreasureData/TDClient.m b/TreasureData/TDClient.m index bf5dbf6..54c3d07 100644 --- a/TreasureData/TDClient.m +++ b/TreasureData/TDClient.m @@ -13,7 +13,7 @@ #import "Deflate.h" #import "TDClient.h" -static NSString *version = @"0.8.0"; +static NSString *version = @"0.8.1"; @implementation TDClient diff --git a/TreasureDataExample/Podfile b/TreasureDataExample/Podfile index 259788e..e8db2d1 100644 --- a/TreasureDataExample/Podfile +++ b/TreasureDataExample/Podfile @@ -4,5 +4,4 @@ end target 'TreasureDataTVOSExample' do pod 'TreasureData-iOS-SDK', :path => '..' - pod 'KeenClientTD', :git => 'https://github.com/treasure-data/KeenClient-iOS.git', :commit => '164d1c6' end