Skip to content

Commit

Permalink
3.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dankinsoid committed Nov 19, 2023
1 parent 40a528b commit 563aec5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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"
Expand Down Expand Up @@ -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"])
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftOpenAPI/OpenAPIDescriptable.swift
Expand Up @@ -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:
Expand Down

0 comments on commit 563aec5

Please sign in to comment.