We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a7c554 commit 51fa476Copy full SHA for 51fa476
3 files changed
CHANGELOG.md
@@ -3,6 +3,11 @@
3
## [Unreleased](unreleased)
4
5
6
+## [0.7.1] - 2021-09-09
7
+### Fixed
8
+- Fix segfault on double closing an sqlite connection. [#162](https://github.com/elixir-sqlite/exqlite/pull/162)
9
+
10
11
## [0.7.0] - 2021-09-08
12
### Added
13
- Added `Exqlite.Basic` for a simplified interface to utilizing sqlite3. [#160](https://github.com/elixir-sqlite/exqlite/pull/160)
README.md
@@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite
33
34
```elixir
35
defp deps do
36
- {:exqlite, "~> 0.7.0"}
+ {:exqlite, "~> 0.7.1"}
37
end
38
```
39
mix.exs
@@ -1,7 +1,7 @@
1
defmodule Exqlite.MixProject do
2
use Mix.Project
- @version "0.7.0"
+ @version "0.7.1"
def project do
[
0 commit comments