Skip to content

Commit

Permalink
Hotfix release 0.9.0 (#110)
Browse files Browse the repository at this point in the history
* Remove Package.resolved
* Add Swift Package Manager section in README
* Use https instead of git for Package.swift dependencies
  • Loading branch information
tung-vu-td authored Oct 4, 2022
1 parent c132cd4 commit a1b84ca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 17 deletions.
16 changes: 0 additions & 16 deletions Package.resolved

This file was deleted.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let package = Package(
targets: ["TreasureData_iOS_SDK"]),
],
dependencies: [
.package(url: "git@github.com:treasure-data/KeenClient-iOS.git", .exact("3.9.0"))
.package(url: "https://github.com/treasure-data/KeenClient-iOS.git", .exact("3.9.0"))
],
targets: [
.target(
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ $ pod install

Remember to reopen your project by opening .xcworkspace file instead of .xcodeproj file

### Swift Package Manager

You can install either via Xcode: File > Swift Packages > Add Package Dependency and enter `https://github.com/treasure-data/td-ios-sdk.git`.

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"))
```

### Framework

From 0.9.0, we no longer support standalone framework.
Expand Down

0 comments on commit a1b84ca

Please sign in to comment.