File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
s . name = 'GCDWebServer'
10
- s . version = '3.7.3 '
10
+ s . version = '3.7.4 '
11
11
s . author = { 'Pierre-Olivier Latour' => '[email protected] ' }
12
12
s . license = { :type => 'BSD' , :file => 'LICENSE' }
13
13
s . homepage = 'https://github.com/readium/GCDWebServer'
14
14
s . summary = 'Lightweight GCD based HTTP server for OS X & iOS (includes web based uploader & WebDAV server)'
15
15
16
16
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'
18
18
s . requires_arc = true
19
19
20
20
s . default_subspec = 'Core'
Original file line number Diff line number Diff line change 507
507
DYLIB_CURRENT_VERSION = 1;
508
508
DYLIB_INSTALL_NAME_BASE = "@rpath";
509
509
INFOPLIST_FILE = Frameworks/Info.plist;
510
- IPHONEOS_DEPLOYMENT_TARGET = 10 .0;
510
+ IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
511
511
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
512
512
MODULEMAP_FILE = Frameworks/module.modulemap;
513
513
PRODUCT_BUNDLE_IDENTIFIER = "${PRODUCT_BUNDLE_IDENTIFIER}";
526
526
DYLIB_CURRENT_VERSION = 1;
527
527
DYLIB_INSTALL_NAME_BASE = "@rpath";
528
528
INFOPLIST_FILE = Frameworks/Info.plist;
529
- IPHONEOS_DEPLOYMENT_TARGET = 10 .0;
529
+ IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
530
530
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
531
531
MODULEMAP_FILE = Frameworks/module.modulemap;
532
532
PRODUCT_BUNDLE_IDENTIFIER = "${PRODUCT_BUNDLE_IDENTIFIER}";
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import PackageDescription
3
3
4
4
let package = Package (
5
5
name: " GCDWebServer " ,
6
+ platforms: [ . iOS( . v11) ] ,
6
7
products: [
7
8
. library( name: " GCDWebServer " , targets: [ " GCDWebServer " ] ) ,
8
9
] ,
@@ -15,4 +16,4 @@ let package = Package(
15
16
]
16
17
)
17
18
]
18
- )
19
+ )
You can’t perform that action at this time.
0 commit comments