File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ All notable changes will be documented in this file.
5
5
The format is loosely based on [ Keep a Changelog] [ keepachangelog ] , and this
6
6
project adheres to [ Semantic Versioning] [ semver ] .
7
7
8
+ ## v0.9.1 - 2022-12-21
9
+ - changed: Use ` Connection.connect ` instead of ` Sqlite3.open ` . [ #96 ] ( https://github.com/elixir-sqlite/ecto_sqlite3/pull/96 )
10
+
8
11
## v0.9.0 - 2022-11-30
9
12
- fixed: Added ` dump_cmd/3 `
10
13
- fixed: Added ` query_many/4 `
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ in Hexdocs.
17
17
``` elixir
18
18
defp deps do
19
19
[
20
- {:ecto_sqlite3 , " ~> 0.9.0 " }
20
+ {:ecto_sqlite3 , " ~> 0.9.1 " }
21
21
]
22
22
end
23
23
```
Original file line number Diff line number Diff line change 1
1
defmodule EctoSQLite3.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.9.0 "
4
+ @ version "0.9.1 "
5
5
6
6
def project do
7
7
[
You can’t perform that action at this time.
0 commit comments