Skip to content

Commit 105068e

Browse files
committed
Bump to v0.13.6
1 parent 1c1498f commit 105068e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unlreleased
44

5+
## v0.13.6 - 2023-03-09
6+
- fixed: Error responses from sqlite NIF come back as an atom, the `message` field in `Exqlite.Error` is expected to be a string. [#242](https://github.com/elixir-sqlite/exqlite/pull/242)
7+
58
## v0.13.5 - 2023-02-27
69
- changed: Allow `:force_build` to be specified in application configration to allow projects to force build the application rather than use precompiled binaries. [#241](https://github.com/elixir-sqlite/exqlite/pull/241) [#240](https://github.com/elixir-sqlite/exqlite/pull/240)
710

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Package: https://hex.pm/packages/exqlite
3434
```elixir
3535
defp deps do
3636
[
37-
{:exqlite, "~> 0.13.5"}
37+
{:exqlite, "~> 0.13"}
3838
]
3939
end
4040
```

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Exqlite.MixProject do
22
use Mix.Project
33

4-
@version "0.13.5"
4+
@version "0.13.6"
55
@sqlite_version "3.41.0"
66

77
def project do

0 commit comments

Comments
 (0)