Skip to content

Commit 4378ca8

Browse files
committed
Bump to v0.13.0
1 parent 5c7a815 commit 4378ca8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ project adheres to [Semantic Versioning][semver].
77

88
## Unreleased
99

10+
## v0.13.0
11+
12+
- added: Support fragment splicing.
13+
- added: Support parent_as with combination queries.
14+
- changed: Don't need to consider `{:maybe, type}`` when loading or dumping.
15+
- changed: Handle nil values in dumpers and loaders.
16+
1017
## v0.12.0
1118

1219
- changed: raise if an in memory database is opened with a pool_size != 1

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ in Hexdocs.
1717
```elixir
1818
defp deps do
1919
[
20-
{:ecto_sqlite3, "~> 0.12"}
20+
{:ecto_sqlite3, "~> 0.13"}
2121
]
2222
end
2323
```

Diff for: mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule EctoSQLite3.MixProject do
22
use Mix.Project
33

4-
@version "0.12.0"
4+
@version "0.13.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)