4 Commits

Author SHA1 Message Date
Yagiz Gurgul 763aadbf6a Merge pull request #69 from techinpark/feature/update-readme
Update Installation versions
2020-10-25 00:33:32 +01:00
Fernando e84621b119 Update Installation versions
- update installation versions to `1.4.0`
2020-10-24 21:50:10 +09:00
Yagiz Gurgul edbaca57c5 Merge pull request #68 from yagiz/release/1.4.0
Release 1.4.0 Merge
2020-10-22 23:23:28 +01:00
yagiz 00339064dc version++ 2020-10-22 23:17:47 +01:00
2 changed files with 9 additions and 9 deletions
+6 -6
View File
@@ -1,23 +1,23 @@
Pod::Spec.new do |s|
s.name = 'Bagel'
s.version = '1.3.2'
s.version = '1.4.0'
s.summary = 'Bagel is a little native iOS network sniffer.'
s.description = <<-DESC
Bagel is a native iOS network sniffer. It's not a proxy debugger so you don't have to mess around with certificates, proxy settings etc. As long as your iOS devices and your Mac are in the same network, you can view the network traffic of your apps seperated by the devices.
DESC
s.homepage = 'https://github.com/yagiz/Bagel'
s.license = { :type => 'APACHE', :file => 'LICENSE' }
s.author = { 'Yagiz' => 'yagizgurgul@gmail.com' }
s.source = { :git => 'https://github.com/yagiz/Bagel.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '11.0'
s.source_files = 'iOS/Source/*.{h,m}'
s.dependency 'CocoaAsyncSocket'
s.requires_arc = true
end
+3 -3
View File
@@ -23,15 +23,15 @@ Bagel is a little native iOS network debugger. It's not a proxy debugger so you
#### Install iOS Client
#### CocoaPods
```shhttps://img.shields.io/badge/version-1.3.1-blue.svg?style=flat
pod 'Bagel', '~> 1.3.2'
pod 'Bagel', '~> 1.4.0'
```
##### Carthage
```sh
github "yagiz/Bagel" "1.3.2"
github "yagiz/Bagel" "1.4.0"
```
##### Accio
```swift
.package(url: "https://github.com/yagiz/Bagel.git", .upToNextMajor(from: "1.3.2")),
.package(url: "https://github.com/yagiz/Bagel.git", .upToNextMajor(from: "1.4.0")),
```
### Usage