File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ v2.x.x -> v3.x.x upgrade guide] ( /upgrade_guides/version_3_upgrade_guide.md )
4
4
5
+ ## v3.1.0
6
+
7
+ - Add ` :nil_to_empty_mapset ` and ` :empty_mapset_to_nil ` configuration options.
8
+
5
9
## v3.0.3
6
10
7
11
- Constrain ecto_sql requirement to 3.5.x. 3.6 introduces interface changes that are not yet supported.
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ Install the [Hex](https://hex.pm/packages/ecto_adapters_dynamodb) package by add
184
184
``` elixir
185
185
defp deps do
186
186
[
187
- {:ecto_adapters_dynamodb , " ~> 3.0 " }
187
+ {:ecto_adapters_dynamodb , " ~> 3.1 " }
188
188
]
189
189
end
190
190
```
@@ -194,7 +194,7 @@ Otherwise, to fetch from GitHub:
194
194
``` elixir
195
195
defp deps do
196
196
[
197
- {:ecto_adapters_dynamodb , git: " https://github.com/circles-learning-labs/ecto_adapters_dynamodb" , tag: " 3.0.3 " }
197
+ {:ecto_adapters_dynamodb , git: " https://github.com/circles-learning-labs/ecto_adapters_dynamodb" , tag: " 3.1.0 " }
198
198
]
199
199
end
200
200
```
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Ecto.Adapters.DynamoDB.Mixfile do
4
4
def project do
5
5
[
6
6
app: :ecto_adapters_dynamodb ,
7
- version: "3.0.3 " ,
7
+ version: "3.1.0 " ,
8
8
elixir: "~> 1.7" ,
9
9
build_embedded: Mix . env ( ) == :prod ,
10
10
start_permanent: Mix . env ( ) == :prod ,
You can’t perform that action at this time.
0 commit comments