Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-foster committed Apr 26, 2024
1 parent 0b0eaaf commit fc5c802
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

_Nothing yet._

## 0.1.0

This release is a major change from version `0.0.8`.
It includes support for plugins, sub-schemas, and more.
See the [plugins guide](guides/plugins.md) and [migration guide](guides/migration.md) for more information, and check out the release candidate notes below for a comprehensive list of changes.

Changes since the last release candidate:

* **Fix**: `anyOf` and `oneOf` definitions now take precedence over generic union types.
* **Fix**: Modules with both schema(s) and operations no longer define `__field__/1` twice.
* **Fix**: Add URL encoded form types to the readable type helper, and fix its fallback clause.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Add the dependency in `mix.exs`:
```elixir
def deps do
[
{:oapi_generator, "0.1.0-rc.4", only: :dev, runtime: false}
{:oapi_generator, "~> 0.1.0", only: :dev, runtime: false}
]
end
```
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 OpenAPI.MixProject do
use Mix.Project

@version "0.1.0-rc.4"
@version "0.1.0"
@source_url "https://github.com/aj-foster/open-api-generator"

def project do
Expand Down

0 comments on commit fc5c802

Please sign in to comment.