We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd22706 commit 776d933Copy full SHA for 776d933
3 files changed
CHANGELOG.md
@@ -3,6 +3,11 @@
3
## [Unreleased](unreleased)
4
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
11
## [0.8.0] - 2021-11-30
12
### Changed
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).
README.md
@@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite
33
34
```elixir
35
defp deps do
36
- {:exqlite, "~> 0.8.0"}
+ {:exqlite, "~> 0.8.1"}
37
end
38
```
39
mix.exs
@@ -1,7 +1,7 @@
1
defmodule Exqlite.MixProject do
2
use Mix.Project
- @version "0.8.0"
+ @version "0.8.1"
def project do
[
0 commit comments