From 14a553a755ba9ee54fc17db7a350e18d4cb9d995 Mon Sep 17 00:00:00 2001 From: Pran Kishore <kishorepran@gmail.com> Date: Sun, 20 Oct 2024 18:43:04 +0530 Subject: [PATCH] update version to 3.7.0 in files (#140) --- Device.podspec | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Device.podspec b/Device.podspec index a638e33..73c4dca 100644 --- a/Device.podspec +++ b/Device.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Device" - s.version = "3.6.0" + s.version = "3.7.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 07ca38b..a3871fa 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.6.0' +pod "Device", '~> 3.7.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.6.0 +github "Ekhoo/Device" ~> 3.7.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.6.0") + .package(url: "https://github.com/Ekhoo/Device.git", from: "3.7.0") ] ```