Skip to content

Commit

Permalink
Release 0.6.0 (#77)
Browse files Browse the repository at this point in the history
* Update README to add documentation to use .xcworkspace after pod install

* Use sha256 hash instead of md5 hash algo
  • Loading branch information
tung-vu-td authored Jul 7, 2020
1 parent 1f495ce commit 82321cc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 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.6.0
_2020-06-15_

* Use SHA-256 algorithm instead of MD5 algorithm to generate project id for cache data in Keen client

## Version 0.5.0
_2020-04-28_

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.5.0'
pod 'TreasureData-iOS-SDK', '= 0.6.0'
```

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.5.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.6.0/TreasureData-iOS-SDK.framework.zip) and add it and `libz` library into your project.

## Usage in Objective-C

Expand Down
2 changes: 1 addition & 1 deletion 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.5.0"
s.version = "0.6.0"
s.summary = "TreasureData SDK for iOS."
s.license = "Apache"
s.authors = { "mitsu" => "mitsu@treasure-data.com",
Expand Down
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.5.0";
static NSString *version = @"0.6.0";

@implementation TDClient

Expand Down

0 comments on commit 82321cc

Please sign in to comment.