Skip to content

Commit

Permalink
Release 1.2.1 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td authored Nov 14, 2024
1 parent d420d73 commit b12541a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## version 1.2.1
_2024-11-14_

* Change a couple of internal headers name
* No change in public APIs or behavior

## version 1.2.0
_2024-07-10_

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

```
pod 'TreasureData-iOS-SDK', '= 1.2.0'
pod 'TreasureData-iOS-SDK', '= 1.2.1'
```

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

### Framework
Expand Down Expand Up @@ -566,7 +566,7 @@ This SDK supports Apple tvOS version 12 and up. APIs and their behaviors are lar

#### iOS

| iOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 | v1.1.1 | v1.2.0 |
| iOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 | v1.1.1 | v1.2.0 & v1.2.1 |
| :---------- | :----------------- | :----------------- | :----------------- | :----------------- | :----------------- | :----------------- |
| 18 | not tested | not tested | not tested | not tested | not tested | :white_check_mark: |
| 17 | not tested | not tested | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
Expand All @@ -583,6 +583,6 @@ This SDK supports Apple tvOS version 12 and up. APIs and their behaviors are lar

#### tvOS

| tvOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 | v1.1.1 | v1.2.0 |
| tvOS Version | v0.8.0 | v0.9.0 | v1.0.1 | v1.1.0 | v1.1.1 | v1.2.0 & v1.2.1 |
| :----------- | :----------------- | :----------------- | :----------------- | :----------------- | :----------------- | :----------------- |
| 12 and up | :white_check_mark: | :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.2.0'
s.version = '1.2.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.2.0";
static NSString *version = @"1.2.1";

@implementation TDClient

Expand Down

0 comments on commit b12541a

Please sign in to comment.