We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8881fd commit cfe1c58Copy full SHA for cfe1c58
3 files changed
CHANGELOG.md
@@ -7,7 +7,12 @@ project adheres to [Semantic Versioning][semver].
7
8
## Unreleased
9
10
+## v0.12.0
11
+
12
- changed: raise if an in memory database is opened with a pool_size != 1
13
+- added: support `{:unsafe_fragment, ".."}` as a conflict target.
14
+- changed: Dropped support for Elixir `1.12`.
15
+- changed: Dropped support for OTP 23.
16
17
## v0.11.0
18
README.md
@@ -17,7 +17,7 @@ in Hexdocs.
```elixir
defp deps do
19
[
20
- {:ecto_sqlite3, "~> 0.11"}
+ {:ecto_sqlite3, "~> 0.12"}
21
]
22
end
23
```
mix.exs
@@ -1,7 +1,7 @@
1
defmodule EctoSQLite3.MixProject do
2
use Mix.Project
3
4
- @version "0.11.0"
+ @version "0.12.0"
5
6
def project do
0 commit comments