Skip to content

Commit bd3c0fc

Browse files
authored
Merge pull request #32 from canopas/add-uikit-import
Add UIKit import
2 parents 4e2975b + caea7b1 commit bd3c0fc

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea
4242

4343
```swift
4444
dependencies: [
45-
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "2.0.0"))
45+
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "2.0.1"))
4646
]
4747
```
4848

@@ -51,7 +51,7 @@ dependencies: [
5151
[CocoaPods][] is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate UIPilot into your Xcode project using CocoaPods, specify it in your Podfile:
5252

5353
target 'YourAppName' do
54-
pod 'UIPilot', '~> 2.0.0'
54+
pod 'UIPilot', '~> 2.0.1'
5555
end
5656

5757
[CocoaPods]: https://cocoapods.org

Sources/UIPilot/UIPilot.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import SwiftUI
22
import Combine
3+
import UIKit
34

45
public class UIPilot<T: Equatable>: ObservableObject {
56

UIPilot.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "UIPilot"
3-
s.version = "2.0.0"
3+
s.version = "2.0.1"
44
s.summary = "The missing type-safe, SwiftUI navigation library."
55

66
s.description = <<-DESC

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea
322322

323323
```swift
324324
dependencies: [
325-
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.3.1"))
325+
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "2.0.1"))
326326
]
327327
```
328328

@@ -331,7 +331,7 @@ dependencies: [
331331
[CocoaPods][] is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate UIPilot into your Xcode project using CocoaPods, specify it in your Podfile:
332332

333333
target 'YourAppName' do
334-
pod 'UIPilot', '~> 1.3.1'
334+
pod 'UIPilot', '~> 2.0.1'
335335
end
336336

337337
[CocoaPods]: https://cocoapods.org

0 commit comments

Comments
 (0)