Skip to content

Commit

Permalink
Merge pull request #172 from GhostGroup/version-3.5.1
Browse files Browse the repository at this point in the history
Version 3.5.1
  • Loading branch information
mbuhot authored Nov 10, 2019
2 parents 981f2a9 + 5644453 commit 0b31a7c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 3.5.1

Thanks to the contributions of the community ❤️💙💛💜🧡

* [mrmstn](https://github.com/mrmstn)

- Fix: Issues with complex types for phoenix endpoints (#161)
- Fix: In ExDoc-based operation spec (experimental), change key name used to define `requestBody` (#164)
- Fix: `oneOf` schema having object schemas (#167)

# 3.5.0

Thanks to the contributions of the community ❤️💙💛💜🧡
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ defmodule MyAppWeb.UserController do
"""
@doc parameters: [
id: [in: :query, type: :string, required: true, description: "User ID"]
]
],
@doc request_body: {"Request body to update a User", "application/json", User, required: true}
@doc responses: %{
200 => {"User", "application/json", MyAppWeb.Schema.User}
}
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule OpenApiSpex.Mixfile do
use Mix.Project

@version "3.5.0"
@version "3.5.1"

def project do
[
Expand Down

0 comments on commit 0b31a7c

Please sign in to comment.