Skip to content

Commit

Permalink
Fix Xcode 12.5 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
havebeenfitz committed May 12, 2021
1 parent bfec906 commit 8c10054
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion AnchoredBottomSheet.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AnchoredBottomSheet'
s.version = '1.3.4'
s.version = '1.3.5'
s.summary = 'iOS Maps like bottom sheet with configurable anchors and reusable pannable View'

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- AnchoredBottomSheet (1.3.2)
- AnchoredBottomSheet (1.3.5)

DEPENDENCIES:
- AnchoredBottomSheet (from `../`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
AnchoredBottomSheet: b658d0df794818e21b611098fe516e5bd5f610dd
AnchoredBottomSheet: 1ce8689a10408ddc58f21f7a98e29931c90e5d7d

PODFILE CHECKSUM: 9d2fa57cad45113c77064b354f9582a45331dfbf

Expand Down
13 changes: 9 additions & 4 deletions Example/Pods/Local Podspecs/AnchoredBottomSheet.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ AnchoredBottomSheet is available through [CocoaPods](https://cocoapods.org). To
it, simply add the following line to your Podfile:

```ruby
pod 'AnchoredBottomSheet', '~> 1.3.4'
pod 'AnchoredBottomSheet', '~> 1.3.5'
```


Expand All @@ -91,7 +91,7 @@ $ brew install carthage
To integrate AnchoredBottomSheet into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "havebeenfitz/anchoredbottomsheet" "1.3.4"
github "havebeenfitz/anchoredbottomsheet" "1.3.5"
```

Run `carthage update` to build the framework and drag the built `SnapKit.framework` into your Xcode project.
Expand All @@ -108,7 +108,7 @@ To integrate AnchoredBottomSheet into your Xcode project using Swift Package Man
dependencies: [
.package(
url: "https://github.com/havebeenfitz/anchoredbottomsheet.git",
.upToNextMajor(from: "1.3.4")
.upToNextMajor(from: "1.3.5")
)
]
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

import Foundation

public protocol BottomSheetViewControllerDelegate: class {
public protocol BottomSheetViewControllerDelegate: AnyObject {
func didDismiss()
}
2 changes: 1 addition & 1 deletion Sources/AnchoredBottomSheet/BottomSheetViewDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import UIKit

public protocol BottomSheetViewDelegate: class {
public protocol BottomSheetViewDelegate: AnyObject {
func heightDidChange(to y: CGFloat)
func shouldDismiss(sender: UIView)
}
Expand Down

0 comments on commit 8c10054

Please sign in to comment.