Skip to content

Commit

Permalink
Release 0.8.1 (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td authored Aug 20, 2021
1 parent bba949d commit 50a923a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions TreasureData-iOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -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" => "[email protected]",
Expand All @@ -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
2 changes: 1 addition & 1 deletion TreasureData/TDClient.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#import "Deflate.h"
#import "TDClient.h"

static NSString *version = @"0.8.0";
static NSString *version = @"0.8.1";

@implementation TDClient

Expand Down
1 change: 0 additions & 1 deletion TreasureDataExample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 50a923a

Please sign in to comment.