Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to version 3.6.0 #130

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Device.podspec
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand All @@ -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")
]
```

Expand Down