Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let package = Package(
.library(name: "FeatherOpenAPI", targets: ["FeatherOpenAPI"]),
],
dependencies: [
.package(url: "https://github.com/mattpolzin/OpenAPIKit", exact: "5.0.0-rc.2"),
.package(url: "https://github.com/mattpolzin/OpenAPIKit", from: "5.0.0"),
.package(url: "https://github.com/jpsim/Yams", from: "6.2.0"),
// [docc-plugin-placeholder]
],
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The FeatherOpenAPI library makes it easy to define OpenAPI specifications using Swift in a type-safe way.

[![Release: 1.0.0-beta.1](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E1-F05138)](https://github.com/feather-framework/feather-openapi/releases/tag/1.0.0-beta.1)
[![Release: 1.0.0-beta.2](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E2-F05138)](https://github.com/feather-framework/feather-openapi/releases/tag/1.0.0-beta.2)

## Features

Expand Down Expand Up @@ -30,7 +30,7 @@ The FeatherOpenAPI library makes it easy to define OpenAPI specifications using
Use Swift Package Manager; add the dependency to your `Package.swift` file:

```swift
.package(url: "https://github.com/feather-framework/feather-openapi", exact: "1.0.0-beta.1"),
.package(url: "https://github.com/feather-framework/feather-openapi", exact: "1.0.0-beta.2"),
```

Then add `FeatherOpenAPI` to your target dependencies:
Expand All @@ -41,7 +41,11 @@ Then add `FeatherOpenAPI` to your target dependencies:

## Usage

[![DocC API documentation](https://img.shields.io/badge/DocC-API_documentation-F05138)] (https://feather-framework.github.io/feather-openapi/)
[
![DocC API documentation](https://img.shields.io/badge/DocC-API_documentation-F05138)
](
https://feather-framework.github.io/feather-openapi/
)

API documentation is available at the following link.

Expand Down