[swift5] update new minimum OS supported versions (#13667)

* [swift5] update new minimum supported versions

* [swift5] update new minimum supported versions

* [swift5] update new minimum supported versions

* [swift5] update new minimum supported versions
This commit is contained in:
Bruno Coelho
2022-10-12 09:07:32 +01:00
committed by GitHub
parent 36fd9f13f2
commit 6ba97321ff
94 changed files with 350 additions and 449 deletions

View File

@@ -9,17 +9,10 @@ let package = Package(
.macOS(.v10_15), .macOS(.v10_15),
{{/useVapor}} {{/useVapor}}
{{^useVapor}} {{^useVapor}}
{{#useAlamofire}} .iOS(.v11),
.iOS(.v10), .macOS(.v10_13),
.macOS(.v10_12), .tvOS(.v11),
.tvOS(.v10), .watchOS(.v4),
{{/useAlamofire}}
{{^useAlamofire}}
.iOS(.v9),
.macOS(.v10_11),
.tvOS(.v9),
{{/useAlamofire}}
.watchOS(.v3),
{{/useVapor}} {{/useVapor}}
], ],
products: [ products: [

View File

@@ -1,17 +1,10 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = '{{projectName}}'{{#projectDescription}} s.name = '{{projectName}}'{{#projectDescription}}
s.summary = '{{.}}'{{/projectDescription}} s.summary = '{{.}}'{{/projectDescription}}
{{#useAlamofire}} s.ios.deployment_target = '11.0'
s.ios.deployment_target = '10.0' s.osx.deployment_target = '10.13'
s.osx.deployment_target = '10.12' s.tvos.deployment_target = '11.0'
s.tvos.deployment_target = '10.0' s.watchos.deployment_target = '4.0'
{{/useAlamofire}}
{{^useAlamofire}}
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
{{/useAlamofire}}
s.watchos.deployment_target = '3.0'
s.version = '{{podVersion}}{{^podVersion}}{{#apiInfo}}{{version}}{{/apiInfo}}{{^apiInfo}}}0.0.1{{/apiInfo}}{{/podVersion}}' s.version = '{{podVersion}}{{^podVersion}}{{#apiInfo}}{{version}}{{/apiInfo}}{{^apiInfo}}}0.0.1{{/apiInfo}}{{/podVersion}}'
s.source = {{#podSource}}{{& podSource}}{{/podSource}}{{^podSource}}{ :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v{{#apiInfo}}{{version}}{{/apiInfo}}{{^apiInfo}}}0.0.1{{/apiInfo}}' }{{/podSource}} s.source = {{#podSource}}{{& podSource}}{{/podSource}}{{^podSource}}{ :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v{{#apiInfo}}{{version}}{{/apiInfo}}{{^apiInfo}}}0.0.1{{/apiInfo}}' }{{/podSource}}
{{#podAuthors}} {{#podAuthors}}

View File

@@ -3,7 +3,7 @@ targets:
{{projectName}}: {{projectName}}:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [{{swiftPackagePath}}{{^swiftPackagePath}}{{#useSPMFileStructure}}Sources{{/useSPMFileStructure}}{{^useSPMFileStructure}}{{projectName}}{{/useSPMFileStructure}}{{/swiftPackagePath}}] sources: [{{swiftPackagePath}}{{^swiftPackagePath}}{{#useSPMFileStructure}}Sources{{/useSPMFileStructure}}{{^useSPMFileStructure}}{{projectName}}{{/useSPMFileStructure}}{{/swiftPackagePath}}]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Alamofire/Alamofire", "repositoryURL": "https://github.com/Alamofire/Alamofire",
"state": { "state": {
"branch": null, "branch": null,
"revision": "f96b619bcb2383b43d898402283924b80e2c4bae", "revision": "8dd85aee02e39dd280c75eef88ffdb86eed4b07b",
"version": "5.4.3" "version": "5.6.2"
} }
}, },
{ {
@@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v10), .iOS(.v11),
.macOS(.v10_12), .macOS(.v10_13),
.tvOS(.v10), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '10.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.12' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '10.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -326,7 +326,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES; MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos; SDKROOT = iphoneos;
@@ -377,7 +377,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO; MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos; SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule; SWIFT_COMPILATION_MODE = wholemodule;

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Alamofire/Alamofire", "repositoryURL": "https://github.com/Alamofire/Alamofire",
"state": { "state": {
"branch": null, "branch": null,
"revision": "f96b619bcb2383b43d898402283924b80e2c4bae", "revision": "8dd85aee02e39dd280c75eef88ffdb86eed4b07b",
"version": "5.4.3" "version": "5.6.2"
} }
}, },
{ {
@@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -323,7 +323,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.3; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES; MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos; SDKROOT = iphoneos;
@@ -374,7 +374,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.3; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO; MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos; SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule; SWIFT_COMPILATION_MODE = wholemodule;

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "b1a7a8a6186f2fcb28f7bda67cfc545de48b3c80", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.2" "version": "0.6.6"
} }
} }
] ]

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -322,7 +322,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES; MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos; SDKROOT = iphoneos;
@@ -373,7 +373,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO; MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos; SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule; SWIFT_COMPILATION_MODE = wholemodule;

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "b1a7a8a6186f2fcb28f7bda67cfc545de48b3c80", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.2" "version": "0.6.6"
} }
} }
] ]

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "b1a7a8a6186f2fcb28f7bda67cfc545de48b3c80", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.2" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '0.0.1' s.version = '0.0.1'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v0.0.1' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v0.0.1' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
}, },
{ {
@@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/mxcl/PromiseKit", "repositoryURL": "https://github.com/mxcl/PromiseKit",
"state": { "state": {
"branch": null, "branch": null,
"revision": "d2f7ba14bcdc45e18f4f60ad9df883fb9055f081", "revision": "43772616c46a44a9977e41924ae01d0e55f2f9ca",
"version": "6.15.3" "version": "6.18.1"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -318,7 +318,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES; MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos; SDKROOT = iphoneos;
@@ -369,7 +369,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO; MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos; SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule; SWIFT_COMPILATION_MODE = wholemodule;

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "b1a7a8a6186f2fcb28f7bda67cfc545de48b3c80", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.2" "version": "0.6.6"
} }
}, },
{ {
@@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/mxcl/PromiseKit", "repositoryURL": "https://github.com/mxcl/PromiseKit",
"state": { "state": {
"branch": null, "branch": null,
"revision": "d2f7ba14bcdc45e18f4f60ad9df883fb9055f081", "revision": "43772616c46a44a9977e41924ae01d0e55f2f9ca",
"version": "6.15.3" "version": "6.18.1"
} }
} }
] ]

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
}, },
{ {
@@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/ReactiveX/RxSwift", "repositoryURL": "https://github.com/ReactiveX/RxSwift",
"state": { "state": {
"branch": null, "branch": null,
"revision": "7c17a6ccca06b5c107cfa4284e634562ddaf5951", "revision": "b4307ba0b6425c0ba4178e138799946c3da594f8",
"version": "6.2.0" "version": "6.5.0"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -323,7 +323,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.3; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES; MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos; SDKROOT = iphoneos;
@@ -374,7 +374,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.3; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO; MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos; SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule; SWIFT_COMPILATION_MODE = wholemodule;

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "b1a7a8a6186f2fcb28f7bda67cfc545de48b3c80", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.2" "version": "0.6.6"
} }
}, },
{ {
@@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/ReactiveX/RxSwift", "repositoryURL": "https://github.com/ReactiveX/RxSwift",
"state": { "state": {
"branch": null, "branch": null,
"revision": "7c17a6ccca06b5c107cfa4284e634562ddaf5951", "revision": "b4307ba0b6425c0ba4178e138799946c3da594f8",
"version": "6.2.0" "version": "6.5.0"
} }
} }
] ]

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -14,7 +14,7 @@ mvn -f $DIRECTORY/urlsessionLibrary/SwaggerClientTests/pom.xml integration-test
# spm build # spm build
mvn -f $DIRECTORY/alamofireLibrary/pom.xml integration-test mvn -f $DIRECTORY/alamofireLibrary/pom.xml integration-test
# mvn -f $DIRECTORY/asyncAwaitLibrary/pom.xml integration-test mvn -f $DIRECTORY/asyncAwaitLibrary/pom.xml integration-test
mvn -f $DIRECTORY/combineLibrary/pom.xml integration-test mvn -f $DIRECTORY/combineLibrary/pom.xml integration-test
mvn -f $DIRECTORY/default/pom.xml integration-test mvn -f $DIRECTORY/default/pom.xml integration-test
mvn -f $DIRECTORY/deprecated/pom.xml integration-test mvn -f $DIRECTORY/deprecated/pom.xml integration-test
@@ -27,5 +27,5 @@ mvn -f $DIRECTORY/readonlyProperties/pom.xml integration-test
mvn -f $DIRECTORY/resultLibrary/pom.xml integration-test mvn -f $DIRECTORY/resultLibrary/pom.xml integration-test
mvn -f $DIRECTORY/rxswiftLibrary/pom.xml integration-test mvn -f $DIRECTORY/rxswiftLibrary/pom.xml integration-test
mvn -f $DIRECTORY/urlsessionLibrary/pom.xml integration-test mvn -f $DIRECTORY/urlsessionLibrary/pom.xml integration-test
mvn -f $DIRECTORY/vaporLibrary/pom.xml integration-test # mvn -f $DIRECTORY/vaporLibrary/pom.xml integration-test
mvn -f $DIRECTORY/x-swift-hashable/pom.xml integration-test mvn -f $DIRECTORY/x-swift-hashable/pom.xml integration-test

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -326,7 +326,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES; MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos; SDKROOT = iphoneos;
@@ -377,7 +377,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2; IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO; MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos; SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule; SWIFT_COMPILATION_MODE = wholemodule;

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "b1a7a8a6186f2fcb28f7bda67cfc545de48b3c80", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.2" "version": "0.6.6"
} }
} }
] ]

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [Sources] sources: [Sources]
info: info:
path: ./Info.plist path: ./Info.plist

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
}, },
{ {

View File

@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode # Created by https://www.toptal.com/developers/gitignore/api/xcode,swift
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode # Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift
### Swift ### ### Swift ###
# Xcode # Xcode
@@ -64,9 +64,9 @@ playground.xcworkspace
Carthage/Build/ Carthage/Build/
# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) # Accio dependency management
# Dependencies/ Dependencies/
# .accio/ .accio/
# fastlane # fastlane
# It is recommended to not store the screenshots in the git repo. # It is recommended to not store the screenshots in the git repo.
@@ -86,20 +86,15 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
### Xcode ### ### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Xcode 8 and earlier
## Gcc Patch
/*.gcno
### Xcode Patch ### ### Xcode Patch ###
*.xcodeproj/* *.xcodeproj/*
!*.xcodeproj/project.pbxproj !*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/ !*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata !*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings **/xcshareddata/WorkspaceSettings.xcsettings
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode # End of https://www.toptal.com/developers/gitignore/api/xcode,swift

View File

@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Flight-School/AnyCodable", "repositoryURL": "https://github.com/Flight-School/AnyCodable",
"state": { "state": {
"branch": null, "branch": null,
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025", "revision": "56901f2af3625b38924d488b612e95fe8846ee9b",
"version": "0.6.1" "version": "0.6.6"
} }
} }
] ]

View File

@@ -5,10 +5,10 @@ import PackageDescription
let package = Package( let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
platforms: [ platforms: [
.iOS(.v9), .iOS(.v11),
.macOS(.v10_11), .macOS(.v10_13),
.tvOS(.v9), .tvOS(.v11),
.watchOS(.v3), .watchOS(.v4),
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.

View File

@@ -1,9 +1,9 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PetstoreClient' s.name = 'PetstoreClient'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11' s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0' s.watchos.deployment_target = '4.0'
s.version = '1.0.0' s.version = '1.0.0'
s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' } s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v1.0.0' }
s.authors = '' s.authors = ''

View File

@@ -3,7 +3,7 @@ targets:
PetstoreClient: PetstoreClient:
type: framework type: framework
platform: iOS platform: iOS
deploymentTarget: "9.0" deploymentTarget: "11.0"
sources: [PetstoreClient] sources: [PetstoreClient]
info: info:
path: ./Info.plist path: ./Info.plist