From 9cc8be6ea9456260e6255ba176c47db894fd9814 Mon Sep 17 00:00:00 2001 From: Pran Kishore Date: Fri, 26 Jan 2024 21:39:19 +0530 Subject: [PATCH] update to version 3.6.0 (#130) --- Device.podspec | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Device.podspec b/Device.podspec index 92bfd04..a638e33 100644 --- a/Device.podspec +++ b/Device.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Device" - s.version = "3.5.0" + s.version = "3.6.0" s.summary = "Light weight tool for detecting the current device and screen size written in swift." s.description = "Swift library for detecting the running device's model and screen size. With the newer  devices, developers have more work to do. This library simplifies their job by allowing them to get information about the running device and easily target the ones they want." diff --git a/README.md b/README.md index 51ba551..07ca38b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Device is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby -pod "Device", '~> 3.5.0' +pod "Device", '~> 3.6.0' ``` ## Carthage @@ -34,7 +34,7 @@ $ brew install carthage To integrate Device into your Xcode project using Carthage, specify it in your `Cartfile`: ```ogdl -github "Ekhoo/Device" ~> 3.5.0 +github "Ekhoo/Device" ~> 3.6.0 ``` Run `carthage update` to build the framework and drag the built `Device.framework` into your Xcode project. @@ -47,7 +47,7 @@ Once you have your Swift package set up, adding Device as a dependency is as eas ```swift dependencies: [ - .package(url: "https://github.com/Ekhoo/Device.git", from: "3.5.0") + .package(url: "https://github.com/Ekhoo/Device.git", from: "3.6.0") ] ```