Skip to content

Commit

Permalink
Release 1.0.0 (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td authored Feb 27, 2023
1 parent f7a49f1 commit 2086d34
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## version 1.0.0
_2023-02-27_

* Add support for Ingest API and Ingest format
* Event collector and keen format are no longer supported
* New intialization APIs with removed initWithEndpoint: API

## version 0.9.0
_2022-09-29_

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ let package = Package(
name: "TreasureData-iOS-SDK",
platforms: [
.iOS(.v12),
.tvOS(.v9)
.tvOS(.v12)
],
products: [
.library(
name: "TreasureData-iOS-SDK",
targets: ["TreasureData_iOS_SDK"]),
],
dependencies: [
.package(url: "https://github.com/treasure-data/KeenClient-iOS.git", .exact("3.9.0")),
.package(url: "https://github.com/treasure-data/KeenClient-iOS.git", .exact("4.0.0")),
.package(url: "https://github.com/nicklockwood/GZIP.git", .upToNextMajor(from: "1.3.0"))
],
targets: [
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $ gem install cocoapods
Next, add this line in your Podfile.

```
pod 'TreasureData-iOS-SDK', '= 0.9.0'
pod 'TreasureData-iOS-SDK', '= 1.0.0'
```

Add this line to your Podfile (usually at the beginning of the file).
Expand All @@ -50,7 +50,7 @@ You can install either via Xcode: File > Swift Packages > Add Package Dependency

Or add this line to `dependencies` array in Package.swift file:
```
.package(url: "https://github.com/treasure-data/td-ios-sdk.git", .upToNextMajor(from: "0.9.0"))
.package(url: "https://github.com/treasure-data/td-ios-sdk.git", .upToNextMajor(from: "1.0.0"))
```

### Framework
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.9.0"
s.version = "1.0.0"
s.summary = "TreasureData SDK for iOS."
s.license = "Apache"
s.authors = { "mitsu" => "mitsu@treasure-data.com",
Expand All @@ -13,7 +13,7 @@ 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.9.0'
s.dependency "KeenClientTD", '= 4.0.0'
s.dependency "GZIP", '= 1.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 "TDClient.h"
@import GZIP;

static NSString *version = @"0.9.0";
static NSString *version = @"1.0.0";

@implementation TDClient

Expand Down

0 comments on commit 2086d34

Please sign in to comment.