From 563aec5bb4403f930e1611c3023c3205e8fa71ad Mon Sep 17 00:00:00 2001 From: dankinsoid <30962149+dankinsoid@users.noreply.github.com> Date: Sun, 19 Nov 2023 21:29:10 +0400 Subject: [PATCH] 3.0.7 --- README.md | 4 ++-- Sources/SwiftOpenAPI/OpenAPIDescriptable.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d60dd06..190b2b0 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The main accent in the library is on simplifying the syntax: the active use of l ## Short example ```swift try OpenAPIObject( - openapi: "3.0.6", + openapi: "3.0.7", info: InfoObject( title: "Example API", version: "0.1.0" @@ -163,7 +163,7 @@ import PackageDescription let package = Package( name: "SomeProject", dependencies: [ - .package(url: "https://github.com/dankinsoid/SwiftOpenAPI.git", from: "3.0.6") + .package(url: "https://github.com/dankinsoid/SwiftOpenAPI.git", from: "3.0.7") ], targets: [ .target(name: "SomeProject", dependencies: ["SwiftOpenAPI"]) diff --git a/Sources/SwiftOpenAPI/OpenAPIDescriptable.swift b/Sources/SwiftOpenAPI/OpenAPIDescriptable.swift index c4873ca..cb579b0 100644 --- a/Sources/SwiftOpenAPI/OpenAPIDescriptable.swift +++ b/Sources/SwiftOpenAPI/OpenAPIDescriptable.swift @@ -29,7 +29,7 @@ public extension OpenAPIDescriptable { /// - Automatically extracts and synthesizes descriptions from comments on types and stored properties. /// - Simplifies the process of conforming to `OpenAPIDescriptable` by generating necessary implementation details. /// -/// - Warning: Bu default this macro does not process properties with attributes, as it's currently not feasible +/// - Warning: By default this macro does not process properties with attributes, as it's currently not feasible /// to distinguish between stored and computed properties in such cases. You can override this behavior by setting the `includeAttributes` parameter to `true`. /// /// Example: