Skip to content

Commit

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

## [Unreleased]

_Nothing yet._

## 0.2.0 (2024-07-08)

* **Breaking**: Snake case normalization (ex. function names) now correctly segments numbers.
For example, an operation `v2example` is now output as `v2_example`.
This may be a breaking change for clients with numbers in operation IDs.
Expand All @@ -16,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Setting this configuration would be a breaking change for any clients based on API descriptions that have inconsistent field casing.

* **Fix**: Parameters listed in path items (as opposed to operations) now support refs.
* **Fix**: References that point to references are now handled correctly.

### 0.1.1 (2024-05-17)

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.1", only: :dev, runtime: false}
{:oapi_generator, "~> 0.2.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.1"
@version "0.2.0"
@source_url "https://github.com/aj-foster/open-api-generator"

def project do
Expand Down

0 comments on commit 8405ada

Please sign in to comment.