File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased] ( unreleased )
4
4
5
+
6
+ ## [ 0.7.0] - 2021-09-08
7
+ ### Added
8
+ - Added ` Exqlite.Basic ` for a simplified interface to utilizing sqlite3. [ #160 ] ( https://github.com/elixir-sqlite/exqlite/pull/160 )
9
+ - Addded ability to load sqlite extension. [ #160 ] ( https://github.com/elixir-sqlite/exqlite/pull/160 )
10
+
11
+
5
12
## [ 0.6.4] - 2021-09-04
6
13
### Changed
7
14
- Updated SQLite from 3.35.5 to [ 3.36.0] ( https://www.sqlite.org/releaselog/3_36_0.html )
100
107
101
108
102
109
[ ecto_sqlite3 ] : < https://github.com/elixir-sqlite/ecto_sqlite3 >
103
- [ unreleased ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.1...HEAD
104
- [ 0.6.3 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.3...v0.6.2
105
- [ 0.6.2 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.2...v0.6.1
106
- [ 0.6.1 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.1...v0.6.0
110
+ [ unreleased ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.4...HEAD
111
+ [ 0.6.4 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.3...v0.6.4
112
+ [ 0.6.3 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.2...v0.6.3
113
+ [ 0.6.2 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.1...v0.6.2
114
+ [ 0.6.1 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.6.0...v0.6.1
107
115
[ 0.6.0 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.5.11...v0.6.0
108
116
[ 0.5.11 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.5.10...v0.5.11
109
117
[ 0.5.10 ] : https://github.com/elixir-sqlite/exqlite/compare/v0.5.9...v0.5.10
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite
33
33
34
34
``` elixir
35
35
defp deps do
36
- {:exqlite , " ~> 0.6.4 " }
36
+ {:exqlite , " ~> 0.7.0 " }
37
37
end
38
38
```
39
39
Original file line number Diff line number Diff line change 1
1
defmodule Exqlite.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.6.4 "
4
+ @ version "0.7.0 "
5
5
6
6
def project do
7
7
[
You can’t perform that action at this time.
0 commit comments