mirror of
https://github.com/sloanelybutsurely/typeid-elixir.git
synced 2025-05-22 04:52:54 -04:00
0.5.0
This commit is contained in:
parent
6158128e61
commit
af36eda878
4 changed files with 4 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -24,3 +24,4 @@ typeid-*.tar
|
|||
|
||||
# Temporary files, for example, from tests.
|
||||
/tmp/
|
||||
/.elixir-tools
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
## main
|
||||
## 0.5.0
|
||||
|
||||
- `Ecto.ParameterizedType` implementation traverses associations so prefixes only need to be defined on schema primary keys
|
||||
- `Ecto.ParameterizedType` implementation `type` option can be set globally with a `default_type` Application configuration
|
||||
|
|
|
@ -13,7 +13,7 @@ The package can be installed from [hex](https://hex.pm/packages/typeid_elixir) b
|
|||
```elixir
|
||||
def deps do
|
||||
[
|
||||
{:typeid_elixir, "~> 0.4.0"}
|
||||
{:typeid_elixir, "~> 0.5.0"}
|
||||
]
|
||||
end
|
||||
```
|
||||
|
|
2
mix.exs
2
mix.exs
|
@ -1,7 +1,7 @@
|
|||
defmodule TypeID.MixProject do
|
||||
use Mix.Project
|
||||
|
||||
@version "0.4.0"
|
||||
@version "0.5.0"
|
||||
|
||||
def project do
|
||||
[
|
||||
|
|
Loading…
Reference in a new issue