Skip to content

Commit

Permalink
Release 1.1.1 (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td authored Apr 29, 2024
1 parent 11fc284 commit 9093c67
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 20 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.1.0
_2024-04-29_

* Add NSPrivacyAccessedAPIType to Privacy manifest
* Update KeenClientTD to 4.1.1
* Update GZIP to 1.3.2

## version 1.1.0
_2023-12-21_

Expand Down
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ gem install cocoapods
Next, add this line in your Podfile.

```
pod 'TreasureData-iOS-SDK', '= 1.1.0'
pod 'TreasureData-iOS-SDK', '= 1.1.1'
```

Add this line to your Podfile (usually at the beginning of the file).
Expand All @@ -51,7 +51,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: "1.1.0"))
.package(url: "https://github.com/treasure-data/td-ios-sdk.git", .upToNextMajor(from: "1.1.1"))
```

### Framework
Expand Down Expand Up @@ -574,23 +574,23 @@ The current version has been built and tested with XCode v10.2.

#### iOS

| iOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 |
| :---------- | :----------------- | :----------------- | :----------------- | :----------------- |
| 17 | not tested | not tested | :white_check_mark: | :white_check_mark: |
| 16 | not tested | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 15 | not tested | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 14 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 13 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 12 | :white_check_mark: | :white_check_mark: | :white_check_mark: | not tested |
| 11 | :white_check_mark: | not tested | not tested | not tested |
| 10 | :white_check_mark: | not tested | not tested | not tested |
| 9 | :white_check_mark: | not tested | not tested | not tested |
| 8 | :white_check_mark: | not tested | not tested | not tested |
| 7 | not tested | not tested | not tested | not tested |
| iOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 | v1.1.1 |
| :---------- | :----------------- | :----------------- | :----------------- | :----------------- | :----------------- |
| 17 | not tested | not tested | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 16 | not tested | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 15 | not tested | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 14 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 13 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 12 | :white_check_mark: | :white_check_mark: | :white_check_mark: | not tested | not tested |
| 11 | :white_check_mark: | not tested | not tested | not tested | not tested |
| 10 | :white_check_mark: | not tested | not tested | not tested | not tested |
| 9 | :white_check_mark: | not tested | not tested | not tested | not tested |
| 8 | :white_check_mark: | not tested | not tested | not tested | not tested |
| 7 | not tested | not tested | not tested | not tested | not tested |

#### tvOS

| tvOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 |
| :----------- | :----------------- | :----------------- | :----------------- | :----------------- |
| 12 and up | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| tvOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 | v1.1.1 |
| :----------- | :----------------- | :----------------- | :----------------- | :----------------- | :----------------- |
| 12 and up | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |

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 = '1.1.0'
s.version = '1.1.1'
s.summary = 'TreasureData SDK for iOS'
s.license = 'Apache'
s.authors = { 'mitsu': '[email protected]',
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 "TDClient.h"
@import GZIP;

static NSString *version = @"1.1.0";
static NSString *version = @"1.1.1";

@implementation TDClient

Expand Down

0 comments on commit 9093c67

Please sign in to comment.