Release 3.5.5

This commit is contained in:
2026-06-08 18:33:28 +07:00
parent fe0036eb7e
commit bb18abeec8
3 changed files with 5 additions and 5 deletions

View File

@ -1,12 +1,12 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'GCDWebServer' s.name = 'GCDWebServer'
s.version = '3.5.4' s.version = '3.5.5'
s.author = { 'Pierre-Olivier Latour' => 'info@pol-online.net' } s.author = { 'Pierre-Olivier Latour' => 'info@pol-online.net' }
s.license = { :type => 'BSD', :file => 'LICENSE' } s.license = { :type => 'BSD', :file => 'LICENSE' }
s.homepage = 'https://github.com/swisspol/GCDWebServer' s.homepage = 'https://github.com/swisspol/GCDWebServer'
s.summary = 'Lightweight GCD based HTTP server for OS X & iOS (includes web based uploader & WebDAV server)' s.summary = 'Lightweight GCD based HTTP server for OS X & iOS (includes web based uploader & WebDAV server)'
s.source = { :git => 'https://github.com/swisspol/GCDWebServer.git', :tag => s.version.to_s } s.source = { :git => 'https://git.g7software.net/cuong/GCDWebServer.git', :tag => s.version.to_s }
s.ios.deployment_target = '16.0' s.ios.deployment_target = '16.0'
s.tvos.deployment_target = '16.0' s.tvos.deployment_target = '16.0'
s.osx.deployment_target = '12.0' s.osx.deployment_target = '12.0'

View File

@ -1168,7 +1168,7 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO; ALWAYS_SEARCH_USER_PATHS = NO;
BUNDLE_VERSION_STRING = 3.5.4; BUNDLE_VERSION_STRING = 3.5.5;
OTHER_LDFLAGS = "-framework UniformTypeIdentifiers"; OTHER_LDFLAGS = "-framework UniformTypeIdentifiers";
CLANG_ENABLE_OBJC_ARC = YES; CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
@ -1239,7 +1239,7 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO; ALWAYS_SEARCH_USER_PATHS = NO;
BUNDLE_VERSION_STRING = 3.5.4; BUNDLE_VERSION_STRING = 3.5.5;
OTHER_LDFLAGS = "-framework UniformTypeIdentifiers"; OTHER_LDFLAGS = "-framework UniformTypeIdentifiers";
CLANG_ENABLE_OBJC_ARC = YES; CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;

View File

@ -69,7 +69,7 @@ Then run `$ carthage update` and add the generated frameworks to your Xcode proj
You can also use [Swift Package Manager](https://www.swift.org/package-manager/). Add GCDWebServer as a dependency in your `Package.swift`: You can also use [Swift Package Manager](https://www.swift.org/package-manager/). Add GCDWebServer as a dependency in your `Package.swift`:
```swift ```swift
.package(url: "https://github.com/swisspol/GCDWebServer.git", from: "3.5.4") .package(url: "https://git.g7software.net/cuong/GCDWebServer.git", from: "3.5.5")
``` ```
Then add the product(s) you need to your target's dependencies: `"GCDWebServer"` for the core server, `"GCDWebUploader"` for the web uploader, and/or `"GCDWebDAVServer"` for the WebDAV server. In Xcode, use File > Add Package Dependencies and enter the repository URL. Then add the product(s) you need to your target's dependencies: `"GCDWebServer"` for the core server, `"GCDWebUploader"` for the web uploader, and/or `"GCDWebDAVServer"` for the WebDAV server. In Xcode, use File > Add Package Dependencies and enter the repository URL.