Skip to content

Commit

Permalink
release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phcurado committed Jan 4, 2023
1 parent b1e0eb0 commit 3ffbb56
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.9.x (2023-01-04)

### Enhancements

* [Parameter.Field] Support for `on_load/2` and `on_dump/2` functions in field definition.

## v0.8.x (2022-12-10)

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Parameter.dump(UserParam, params)
}}
```

Parameter offers a similar Schema model from [Ecto](https://github.com/elixir-ecto/ecto) library to deal with parameters. The main use case is to parse response from external apis. This library provides a well structured schema model which tries to parse the external data. Check the [official documentation](https://hexdocs.pm/parameter/) for more information.
Parameter offers a similar Schema model from [Ecto](https://github.com/elixir-ecto/ecto) library to deal with parameters. The main use case is to parse response from external APIs. This library provides a well structured schema model which tries to parse the external data. Check the [official documentation](https://hexdocs.pm/parameter/) for more information.


## Installation
Expand All @@ -93,7 +93,7 @@ end
add `:parameter` on `.formatter.exs`:

```elixir
import_deps: [:ecto, :phoenix, ..., :parameter],
import_deps: [:parameter]
```

For `Parameter` with `Ecto` integration check out the [parameter_ecto](https://github.com/phcurado/parameter_ecto) project.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Parameter.MixProject do
use Mix.Project

@source_url "https://github.com/phcurado/parameter"
@version "0.8.2"
@version "0.9.0"

def project do
[
Expand Down

0 comments on commit 3ffbb56

Please sign in to comment.