Current section
31 Versions
Jump to
Current section
31 Versions
Compare versions
5
files changed
+14
additions
-6
deletions
| @@ -1,3 +1,11 @@ | |
| 1 | + # Changelog for Money_SQL v1.4.3 |
| 2 | + |
| 3 | + This is the changelog for Money_SQL v1.4.3 released on February 17th, 2021. |
| 4 | + |
| 5 | + ### Bug Fixes |
| 6 | + |
| 7 | + * Don't propogate a `:default` option into the `t:Money` from the schema. Fixes #14. Thanks to @emaiax. |
| 8 | + |
| 1 9 | # Changelog for Money_SQL v1.4.2 |
| 2 10 | |
| 3 11 | This is the changelog for Money_SQL v1.4.2 released on February 12th, 2021. |
| @@ -1,5 +1,5 @@ | |
| 1 1 | # Introduction to Money SQL |
| 2 | -  |
| 2 | +  |
| 3 3 | [](https://hex.pm/packages/ex_money_sql) |
| 4 4 | [](https://github.com/kipcole9/money_sql/blob/master/LICENSE) |
| @@ -21,10 +21,10 @@ | |
| 21 21 | {<<"licenses">>,[<<"Apache 2.0">>]}. |
| 22 22 | {<<"links">>, |
| 23 23 | [{<<"Changelog">>, |
| 24 | - <<"https://github.com/kipcole9/money_sql/blob/v1.4.2/CHANGELOG.md">>}, |
| 24 | + <<"https://github.com/kipcole9/money_sql/blob/v1.4.3/CHANGELOG.md">>}, |
| 25 25 | {<<"GitHub">>,<<"https://github.com/kipcole9/money_sql">>}, |
| 26 26 | {<<"Readme">>, |
| 27 | - <<"https://github.com/kipcole9/money_sql/blob/v1.4.2/README.md">>}]}. |
| 27 | + <<"https://github.com/kipcole9/money_sql/blob/v1.4.3/README.md">>}]}. |
| 28 28 | {<<"name">>,<<"ex_money_sql">>}. |
| 29 29 | {<<"requirements">>, |
| 30 30 | [[{<<"app">>,<<"ex_money">>}, |
| @@ -52,4 +52,4 @@ | |
| 52 52 | {<<"optional">>,false}, |
| 53 53 | {<<"repository">>,<<"hexpm">>}, |
| 54 54 | {<<"requirement">>,<<"~> 0.15">>}]]}. |
| 55 | - {<<"version">>,<<"1.4.2">>}. |
| 55 | + {<<"version">>,<<"1.4.3">>}. |
| @@ -18,6 +18,7 @@ if Code.ensure_loaded?(Ecto.Type) do | |
| 18 18 | opts |
| 19 19 | |> Keyword.delete(:field) |
| 20 20 | |> Keyword.delete(:schema) |
| 21 | + |> Keyword.delete(:default) |
| 21 22 | end |
| 22 23 | |
| 23 24 | # When loading from the database |
| @@ -108,6 +109,5 @@ if Code.ensure_loaded?(Ecto.Type) do | |
| 108 109 | def cast(_money, _params) do |
| 109 110 | :error |
| 110 111 | end |
| 111 | - |
| 112 112 | end |
| 113 113 | end |
| @@ -1,7 +1,7 @@ | |
| 1 1 | defmodule Money.Sql.Mixfile do |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 | - @version "1.4.2" |
| 4 | + @version "1.4.3" |
| 5 5 | |
| 6 6 | def project do |
| 7 7 | [ |