Skip to content

Commit

Permalink
Merge pull request #32 from canopas/add-uikit-import
Browse files Browse the repository at this point in the history
Add UIKit import
  • Loading branch information
jimmy0251 authored Nov 15, 2022
2 parents 4e2975b + caea7b1 commit bd3c0fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea

```swift
dependencies: [
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "2.0.0"))
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "2.0.1"))
]
```

Expand All @@ -51,7 +51,7 @@ dependencies: [
[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:

target 'YourAppName' do
pod 'UIPilot', '~> 2.0.0'
pod 'UIPilot', '~> 2.0.1'
end

[CocoaPods]: https://cocoapods.org
Expand Down
1 change: 1 addition & 0 deletions Sources/UIPilot/UIPilot.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import SwiftUI
import Combine
import UIKit

public class UIPilot<T: Equatable>: ObservableObject {

Expand Down
2 changes: 1 addition & 1 deletion UIPilot.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "UIPilot"
s.version = "2.0.0"
s.version = "2.0.1"
s.summary = "The missing type-safe, SwiftUI navigation library."

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea

```swift
dependencies: [
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.3.1"))
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "2.0.1"))
]
```

Expand All @@ -331,7 +331,7 @@ dependencies: [
[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:

target 'YourAppName' do
pod 'UIPilot', '~> 1.3.1'
pod 'UIPilot', '~> 2.0.1'
end

[CocoaPods]: https://cocoapods.org
Expand Down

0 comments on commit bd3c0fc

Please sign in to comment.