File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 3
3
## [ Unreleased] ( unreleased )
4
4
5
5
6
+ ## [ 0.8.1] - 2021-12-03
7
+ ### Fixed
8
+ - Fixed unicode handling when executing sql statements. [ #179 ] ( https://github.com/elixir-sqlite/exqlite/pull/179 )
9
+
10
+
6
11
## [ 0.8.0] - 2021-11-30
7
12
### Changed
8
13
- Updated SQLite from [ 3.36.0] ( https://www.sqlite.org/releaselog/3_36_0.html ) to [ 3.37.0] ( https://www.sqlite.org/releaselog/3_37_0.html ) .
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.8.0 " }
36
+ {:exqlite , " ~> 0.8.1 " }
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.8.0 "
4
+ @ version "0.8.1 "
5
5
6
6
def project do
7
7
[
You can’t perform that action at this time.
0 commit comments