Skip to content

Commit

Permalink
2.16.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dankinsoid committed Jun 8, 2023
1 parent 95559ea commit 7c54e4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ import PackageDescription
let package = Package(
name: "SomeProject",
dependencies: [
.package(url: "https://github.com/dankinsoid/SwiftOpenAPI.git", from: "2.16.4")
.package(url: "https://github.com/dankinsoid/SwiftOpenAPI.git", from: "2.16.5")
],
targets: [
.target(name: "SomeProject", dependencies: ["SwiftOpenAPI"])
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftOpenAPI/Objects/SchemaObject.swift
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ public extension ExpressibleBySchemaObject {
.number(format: .double, description: description, example: example)
}

static var double: Self { .decimal() }
static var double: Self { .double() }
static func boolean(description: String? = nil, example: Bool? = nil) -> Self {
.primitive(.boolean, description: description, example: example.map { .bool($0) })
}
Expand Down
2 changes: 1 addition & 1 deletion SwiftOpenAPI.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'SwiftOpenAPI'
s.version = '2.16.4'
s.version = '2.16.5'
s.summary = 'A short description of SwiftOpenAPI.'
s.description = <<-DESC
TODO: Add long description of the pod here.
Expand Down

0 comments on commit 7c54e4e

Please sign in to comment.