Skip to content

Commit 845f814

Browse files
Version changed to 1.1.3.
1 parent d873d82 commit 845f814

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ server.start()
2121
### How to share files?
2222
```swift
2323
let server = HttpServer()
24-
server["/home/:path"] = HttpHandlers.directory("~/")
24+
server["/desktop/:path"] = HttpHandlers.shareFilesFromDirectory("/Users/me/Desktop")
2525
server.start()
2626
```
2727
### How to redirect?
@@ -35,11 +35,11 @@ server.start()
3535
### CocoaPods? Yes.
3636
```
3737
use_frameworks!
38-
pod 'Swifter', '~> 1.1.2'
38+
pod 'Swifter', '~> 1.1.3'
3939
```
4040

4141
### Carthage? Also yes.
4242

4343
```
44-
github "glock45/swifter" == 1.1.2
44+
github "glock45/swifter" == 1.1.3
4545
```

Sources/HttpServer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99

1010
public class HttpServer: HttpServerIO {
1111

12-
public static let VERSION = "1.1.2"
12+
public static let VERSION = "1.1.3"
1313

1414
private let router = HttpRouter()
1515

Swifter.podspec

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

33
s.name = "Swifter"
4-
s.version = "1.1.2"
4+
s.version = "1.1.3"
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" => "kolakowski.damian@gmail.com" }
99
s.ios.deployment_target = "8.0"
1010
s.osx.deployment_target = "10.9"
11-
s.source = { :git => "https://github.com/glock45/swifter.git", :tag => "1.1.2" }
11+
s.source = { :git => "https://github.com/glock45/swifter.git", :tag => "1.1.3" }
1212
s.source_files = 'Sources/*.{h,m,swift}'
1313

1414
end

Swifter.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@
688688
7AE893ED1C05127900A29F63 /* Debug */ = {
689689
isa = XCBuildConfiguration;
690690
buildSettings = {
691-
CURRENT_PROJECT_VERSION = 1.1.2;
691+
CURRENT_PROJECT_VERSION = 1.1.3;
692692
DEBUG_INFORMATION_FORMAT = dwarf;
693693
DEFINES_MODULE = YES;
694694
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -712,7 +712,7 @@
712712
isa = XCBuildConfiguration;
713713
buildSettings = {
714714
COPY_PHASE_STRIP = NO;
715-
CURRENT_PROJECT_VERSION = 1.1.2;
715+
CURRENT_PROJECT_VERSION = 1.1.3;
716716
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
717717
DEFINES_MODULE = YES;
718718
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -737,7 +737,7 @@
737737
buildSettings = {
738738
CODE_SIGN_IDENTITY = "Mac Developer";
739739
COMBINE_HIDPI_IMAGES = YES;
740-
CURRENT_PROJECT_VERSION = 1.1.2;
740+
CURRENT_PROJECT_VERSION = 1.1.3;
741741
DEBUG_INFORMATION_FORMAT = dwarf;
742742
DEFINES_MODULE = YES;
743743
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -765,7 +765,7 @@
765765
CODE_SIGN_IDENTITY = "Mac Developer";
766766
COMBINE_HIDPI_IMAGES = YES;
767767
COPY_PHASE_STRIP = NO;
768-
CURRENT_PROJECT_VERSION = 1.1.2;
768+
CURRENT_PROJECT_VERSION = 1.1.3;
769769
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
770770
DEFINES_MODULE = YES;
771771
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -806,7 +806,7 @@
806806
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
807807
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
808808
COPY_PHASE_STRIP = NO;
809-
CURRENT_PROJECT_VERSION = 1.1.2;
809+
CURRENT_PROJECT_VERSION = 1.1.3;
810810
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
811811
ENABLE_STRICT_OBJC_MSGSEND = YES;
812812
ENABLE_TESTABILITY = YES;
@@ -853,7 +853,7 @@
853853
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
854854
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
855855
COPY_PHASE_STRIP = YES;
856-
CURRENT_PROJECT_VERSION = 1.1.2;
856+
CURRENT_PROJECT_VERSION = 1.1.3;
857857
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
858858
ENABLE_NS_ASSERTIONS = NO;
859859
ENABLE_STRICT_OBJC_MSGSEND = YES;

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.0.6</string>
18+
<string>1.1.3</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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.0.6</string>
18+
<string>1.1.3</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)