Skip to content

Commit c6d8ea0

Browse files
authored
Merge pull request #293 from pvzig/update-podspec
Update podspec to 1.4.0
2 parents 3c86f8e + c4c7315 commit c6d8ea0

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0
1+
4.0

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
![Platform](https://img.shields.io/badge/Platform-Linux%20&%20OSX%20&%20tvOS-4BC51D.svg?style=flat)
2-
![Swift](https://img.shields.io/badge/Swift-3.x-4BC51D.svg?style=flat)
2+
![Swift](https://img.shields.io/badge/Swift-4.x-4BC51D.svg?style=flat)
33
![Protocols](https://img.shields.io/badge/Protocols-HTTP%201.1%20&%20WebSockets-4BC51D.svg?style=flat)
44
[![CocoaPods](https://img.shields.io/cocoapods/v/Swifter.svg?style=flat)]()
55
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
@@ -60,15 +60,15 @@ server.start()
6060
```
6161
### CocoaPods? Yes.
6262
```ruby
63-
# Use version >= 1.1.0.rc.2 (sudo gem install cocoapods --pre)
63+
# Use version >= 1.4.0 (sudo gem install cocoapods)
6464
use_frameworks!
65-
pod 'Swifter', '~> 1.3.3'
65+
pod 'Swifter', '~> 1.4.0'
6666
```
6767

6868
### Carthage? Also yes.
6969
```
7070
# Use version >= 0.18 (https://github.com/Carthage/Carthage/releases/tag/0.18)
71-
github "glock45/swifter" == 1.3.3
71+
github "glock45/swifter" == 1.4.0
7272
```
7373

7474
### Swift Package Manager.
@@ -78,7 +78,7 @@ import PackageDescription
7878
let package = Package(
7979
name: "MyServer",
8080
dependencies: [
81-
.package(url: "https://github.com/httpswift/swifter.git", from: "1.0.0")
81+
.package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.4.0"))
8282
]
8383
)
8484
```

Swifter.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Pod::Spec.new do |s|
22

33
s.name = "Swifter"
4-
s.version = "1.3.3"
4+
s.version = "1.4.0"
55
s.summary = "Tiny http server engine written in Swift programming language."
66
s.homepage = "https://github.com/glock45/swifter"
77
s.license = { :type => 'Copyright', :file => 'LICENSE' }
88
s.author = { "Damian Kołakowski" => "[email protected]" }
99
s.ios.deployment_target = "8.0"
1010
s.osx.deployment_target = "10.9"
1111
s.tvos.deployment_target = "9.0"
12-
s.source = { :git => "https://github.com/glock45/swifter.git", :tag => "1.3.3" }
12+
s.source = { :git => "https://github.com/glock45/swifter.git", :tag => "1.4.0" }
1313
s.source_files = 'Sources/*.{h,m,swift}'
1414

1515
end

XCode/SwifterMac/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.3</string>
18+
<string>1.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

XCode/SwifterSampleiOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.3</string>
18+
<string>1.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

XCode/SwifteriOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.3</string>
18+
<string>1.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

XCode/SwiftertvOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.3</string>
18+
<string>1.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)