[swift5] less restrictive alamofire dependency resolution (#13977)

* modify Alamofire version in podspec

* modify Alamofire version in Package.swift

* also pin optimistically in Cartfile

* optimistically resolve all other dependencies to next major version
This commit is contained in:
Jonas Reichert
2022-11-10 18:27:24 +01:00
committed by GitHub
parent 7ad9f835ff
commit f1b8190b19
49 changed files with 67 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
github "Flight-School/AnyCodable" ~> 0.6.1{{#useAlamofire}} github "Flight-School/AnyCodable" ~> 0.6{{#useAlamofire}}
github "Alamofire/Alamofire" ~> 5.4.3{{/useAlamofire}}{{#usePromiseKit}} github "Alamofire/Alamofire" ~> 5.4{{/useAlamofire}}{{#usePromiseKit}}
github "mxcl/PromiseKit" ~> 6.15.3{{/usePromiseKit}}{{#useRxSwift}} github "mxcl/PromiseKit" ~> 6.15{{/usePromiseKit}}{{#useRxSwift}}
github "ReactiveX/RxSwift" ~> 6.2.0{{/useRxSwift}} github "ReactiveX/RxSwift" ~> 6.2{{/useRxSwift}}

View File

@@ -31,15 +31,15 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
{{#useAlamofire}} {{#useAlamofire}}
.package(url: "https://github.com/Alamofire/Alamofire", from: "5.4.3"), .package(url: "https://github.com/Alamofire/Alamofire", .upToNextMajor(from: "5.4.3")),
{{/useAlamofire}} {{/useAlamofire}}
{{#usePromiseKit}} {{#usePromiseKit}}
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.15.3"), .package(url: "https://github.com/mxcl/PromiseKit", .upToNextMajor(from: "6.15.3")),
{{/usePromiseKit}} {{/usePromiseKit}}
{{#useRxSwift}} {{#useRxSwift}}
.package(url: "https://github.com/ReactiveX/RxSwift", from: "6.2.0"), .package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMajor(from: "6.2.0")),
{{/useRxSwift}} {{/useRxSwift}}
{{#useVapor}} {{#useVapor}}
.package(url: "https://github.com/vapor/vapor", from: "4.0.0") .package(url: "https://github.com/vapor/vapor", from: "4.0.0")

View File

@@ -33,14 +33,14 @@ Pod::Spec.new do |s|
s.documentation_url = '{{.}}' s.documentation_url = '{{.}}'
{{/podDocumentationURL}} {{/podDocumentationURL}}
s.source_files = '{{swiftPackagePath}}{{^swiftPackagePath}}{{#useSPMFileStructure}}Sources/{{projectName}}{{/useSPMFileStructure}}{{^useSPMFileStructure}}{{projectName}}/Classes{{/useSPMFileStructure}}{{/swiftPackagePath}}/**/*.swift' s.source_files = '{{swiftPackagePath}}{{^swiftPackagePath}}{{#useSPMFileStructure}}Sources/{{projectName}}{{/useSPMFileStructure}}{{^useSPMFileStructure}}{{projectName}}/Classes{{/useSPMFileStructure}}{{/swiftPackagePath}}/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
{{#useAlamofire}} {{#useAlamofire}}
s.dependency 'Alamofire', '~> 5.4.3' s.dependency 'Alamofire', '~> 5.4'
{{/useAlamofire}} {{/useAlamofire}}
{{#usePromiseKit}} {{#usePromiseKit}}
s.dependency 'PromiseKit/CorePromise', '~> 6.15.3' s.dependency 'PromiseKit/CorePromise', '~> 6.15'
{{/usePromiseKit}} {{/usePromiseKit}}
{{#useRxSwift}} {{#useRxSwift}}
s.dependency 'RxSwift', '~> 6.2.0' s.dependency 'RxSwift', '~> 6.2'
{{/useRxSwift}} {{/useRxSwift}}
end end

View File

@@ -1,2 +1,2 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6
github "Alamofire/Alamofire" ~> 5.4.3 github "Alamofire/Alamofire" ~> 5.4

View File

@@ -19,8 +19,8 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
.package(url: "https://github.com/Alamofire/Alamofire", from: "5.4.3"), .package(url: "https://github.com/Alamofire/Alamofire", .upToNextMajor(from: "5.4.3")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,6 +11,6 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
s.dependency 'Alamofire', '~> 5.4.3' s.dependency 'Alamofire', '~> 5.4'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1,2 +1,2 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6
github "mxcl/PromiseKit" ~> 6.15.3 github "mxcl/PromiseKit" ~> 6.15

View File

@@ -19,8 +19,8 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.15.3"), .package(url: "https://github.com/mxcl/PromiseKit", .upToNextMajor(from: "6.15.3")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,6 +11,6 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
s.dependency 'PromiseKit/CorePromise', '~> 6.15.3' s.dependency 'PromiseKit/CorePromise', '~> 6.15'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -1,2 +1,2 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6
github "ReactiveX/RxSwift" ~> 6.2.0 github "ReactiveX/RxSwift" ~> 6.2

View File

@@ -19,8 +19,8 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
.package(url: "https://github.com/ReactiveX/RxSwift", from: "6.2.0"), .package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMajor(from: "6.2.0")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,6 +11,6 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
s.dependency 'RxSwift', '~> 6.2.0' s.dependency 'RxSwift', '~> 6.2'
end end

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'Sources/PetstoreClient/**/*.swift' s.source_files = 'Sources/PetstoreClient/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end

View File

@@ -16,7 +16,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
.package(url: "https://github.com/vapor/vapor", from: "4.0.0") .package(url: "https://github.com/vapor/vapor", from: "4.0.0")
], ],
targets: [ targets: [

View File

@@ -1 +1 @@
github "Flight-School/AnyCodable" ~> 0.6.1 github "Flight-School/AnyCodable" ~> 0.6

View File

@@ -19,7 +19,7 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), .package(url: "https://github.com/Flight-School/AnyCodable", .upToNextMajor(from: "0.6.1")),
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.

View File

@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/openapitools/openapi-generator' s.homepage = 'https://github.com/openapitools/openapi-generator'
s.summary = 'PetstoreClient' s.summary = 'PetstoreClient'
s.source_files = 'PetstoreClient/Classes/**/*.swift' s.source_files = 'PetstoreClient/Classes/**/*.swift'
s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' s.dependency 'AnyCodable-FlightSchool', '~> 0.6'
end end