Skip to content

Commit c7bdaa9

Browse files
authored
3.7.4 (#9)
1 parent 3ec154d commit c7bdaa9

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

GCDWebServer.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77

88
Pod::Spec.new do |s|
99
s.name = 'GCDWebServer'
10-
s.version = '3.7.3'
10+
s.version = '3.7.4'
1111
s.author = { 'Pierre-Olivier Latour' => '[email protected]' }
1212
s.license = { :type => 'BSD', :file => 'LICENSE' }
1313
s.homepage = 'https://github.com/readium/GCDWebServer'
1414
s.summary = 'Lightweight GCD based HTTP server for OS X & iOS (includes web based uploader & WebDAV server)'
1515

1616
s.source = { :git => 'https://github.com/readium/GCDWebServer.git', :tag => s.version.to_s }
17-
s.ios.deployment_target = '8.0'
17+
s.ios.deployment_target = '11.0'
1818
s.requires_arc = true
1919

2020
s.default_subspec = 'Core'

GCDWebServer.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@
507507
DYLIB_CURRENT_VERSION = 1;
508508
DYLIB_INSTALL_NAME_BASE = "@rpath";
509509
INFOPLIST_FILE = Frameworks/Info.plist;
510-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
510+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
511511
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
512512
MODULEMAP_FILE = Frameworks/module.modulemap;
513513
PRODUCT_BUNDLE_IDENTIFIER = "${PRODUCT_BUNDLE_IDENTIFIER}";
@@ -526,7 +526,7 @@
526526
DYLIB_CURRENT_VERSION = 1;
527527
DYLIB_INSTALL_NAME_BASE = "@rpath";
528528
INFOPLIST_FILE = Frameworks/Info.plist;
529-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
529+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
530530
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
531531
MODULEMAP_FILE = Frameworks/module.modulemap;
532532
PRODUCT_BUNDLE_IDENTIFIER = "${PRODUCT_BUNDLE_IDENTIFIER}";

Package.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import PackageDescription
33

44
let package = Package(
55
name: "GCDWebServer",
6+
platforms: [.iOS(.v11)],
67
products: [
78
.library(name: "GCDWebServer", targets: ["GCDWebServer"]),
89
],
@@ -15,4 +16,4 @@ let package = Package(
1516
]
1617
)
1718
]
18-
)
19+
)

0 commit comments

Comments
 (0)