From a51e31ec964da2f72baa91cd7a745304e49031d5 Mon Sep 17 00:00:00 2001 From: Vlad Date: Fri, 28 Aug 2020 18:09:58 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20OTPSwiftView=E2=80=99s=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ LeadKit.podspec | 2 +- Package.swift | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4d10132..ffc9be9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### 0.9.43 +- **Fix**: `OTPSwiftView`'s dependencies. + ### 0.9.42 - **Fix**: Logic bugs of `PaginationWrapper`. diff --git a/LeadKit.podspec b/LeadKit.podspec index 74dd2806..f0e3e393 100644 --- a/LeadKit.podspec +++ b/LeadKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "LeadKit" - s.version = "0.9.42" + s.version = "0.9.43" s.summary = "iOS framework with a bunch of tools for rapid development" s.homepage = "https://github.com/TouchInstinct/LeadKit" s.license = "Apache License, Version 2.0" diff --git a/Package.swift b/Package.swift index 374b919e..f15b6fb6 100644 --- a/Package.swift +++ b/Package.swift @@ -18,6 +18,6 @@ let package = Package( .target(name: "TIUIKitCore", path: "TIUIKitCore/Sources"), .target(name: "TISwiftUtils", path: "TISwiftUtils/Sources"), .target(name: "TIUIElements", dependencies: ["TIUIKitCore"], path: "TIUIElements/Sources"), - .target(name: "OTPSwiftView", dependencies: ["TIUIKitCore"], path: "OTPSwiftView/Sources") + .target(name: "OTPSwiftView", dependencies: ["TIUIKitCore", "TISwiftUtils"], path: "OTPSwiftView/Sources") ] )