Skip to content

Commit

Permalink
3.7.4 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu authored Apr 14, 2023
1 parent 3ec154d commit c7bdaa9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions GCDWebServer.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

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

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

s.default_subspec = 'Core'
Expand Down
4 changes: 2 additions & 2 deletions GCDWebServer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = Frameworks/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = Frameworks/module.modulemap;
PRODUCT_BUNDLE_IDENTIFIER = "${PRODUCT_BUNDLE_IDENTIFIER}";
Expand All @@ -526,7 +526,7 @@
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = Frameworks/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = Frameworks/module.modulemap;
PRODUCT_BUNDLE_IDENTIFIER = "${PRODUCT_BUNDLE_IDENTIFIER}";
Expand Down
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import PackageDescription

let package = Package(
name: "GCDWebServer",
platforms: [.iOS(.v11)],
products: [
.library(name: "GCDWebServer", targets: ["GCDWebServer"]),
],
Expand All @@ -15,4 +16,4 @@ let package = Package(
]
)
]
)
)

0 comments on commit c7bdaa9

Please sign in to comment.