Skip to content

Commit 240265f

Browse files
committed
Bump to v0.8.7
1 parent 00b126b commit 240265f

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
## [Unreleased](unreleased)
44

55

6+
## [0.8.7] - 2022-01-21
7+
### Added
8+
- Ability to compile exqlite using the system sqlite3 installation as opposed to building from source. [#186](https://github.com/elixir-sqlite/exqlite/pull/186)
9+
10+
611
## [0.8.6] - 2022-01-19
712
### Changed
813
- Compile SQLite3 with `-DHAVE_USLEEP=1` to allow for more performant concurrent use.
@@ -163,7 +168,9 @@
163168

164169

165170
[ecto_sqlite3]: <https://github.com/elixir-sqlite/ecto_sqlite3>
166-
[unreleased]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.5...HEAD
171+
[unreleased]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.7...HEAD
172+
[0.8.7]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.6...v0.8.7
173+
[0.8.6]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.5...v0.8.6
167174
[0.8.5]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.4...v0.8.5
168175
[0.8.4]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.3...v0.8.4
169176
[0.8.3]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.2...v0.8.3

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite
3333

3434
```elixir
3535
defp deps do
36-
{:exqlite, "~> 0.8.6"}
36+
{:exqlite, "~> 0.8.7"}
3737
end
3838
```
3939

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.8.6"
4+
@version "0.8.7"
55

66
def project do
77
[

0 commit comments

Comments
 (0)