From 225c9cad81e718ab14ae157adcdbd901fa539ad5 Mon Sep 17 00:00:00 2001 From: Max Kraev Date: Sun, 5 Mar 2023 16:50:13 +0400 Subject: [PATCH] Update podspec --- AnchoredBottomSheet.podspec | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AnchoredBottomSheet.podspec b/AnchoredBottomSheet.podspec index 7d4802a..aaa0acd 100644 --- a/AnchoredBottomSheet.podspec +++ b/AnchoredBottomSheet.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'AnchoredBottomSheet' - s.version = '1.6.0' + s.version = '1.6.2' s.summary = 'iOS Maps like bottom sheet with configurable anchors and reusable pannable View' s.description = <<-DESC diff --git a/README.md b/README.md index c1e45bb..ba332f0 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ AnchoredBottomSheet is available through [CocoaPods](https://cocoapods.org). To it, simply add the following line to your Podfile: ```ruby -pod 'AnchoredBottomSheet', '~> 1.6.0' +pod 'AnchoredBottomSheet', '~> 1.6.2' ``` @@ -85,7 +85,7 @@ $ brew install carthage To integrate AnchoredBottomSheet into your Xcode project using Carthage, specify it in your `Cartfile`: ```ogdl -github "havebeenfitz/anchoredbottomsheet" "1.6.0" +github "havebeenfitz/anchoredbottomsheet" "1.6.2" ``` Run `carthage update` to build the framework and drag the built `SnapKit.framework` into your Xcode project. @@ -102,7 +102,7 @@ To integrate AnchoredBottomSheet into your Xcode project using Swift Package Man dependencies: [ .package( url: "https://github.com/havebeenfitz/anchoredbottomsheet.git", - .upToNextMajor(from: "1.6.0") + .upToNextMajor(from: "1.6.2") ) ] ```