From 240265fbd09c112d1dc79ff12e9b30b5f97accfa Mon Sep 17 00:00:00 2001 From: Matthew Johnston Date: Fri, 21 Jan 2022 15:05:51 -0600 Subject: [PATCH] Bump to v0.8.7 --- CHANGELOG.md | 9 ++++++++- README.md | 2 +- mix.exs | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c62115..e7b1dcb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ ## [Unreleased](unreleased) +## [0.8.7] - 2022-01-21 +### Added +- Ability to compile exqlite using the system sqlite3 installation as opposed to building from source. [#186](https://github.com/elixir-sqlite/exqlite/pull/186) + + ## [0.8.6] - 2022-01-19 ### Changed - Compile SQLite3 with `-DHAVE_USLEEP=1` to allow for more performant concurrent use. @@ -163,7 +168,9 @@ [ecto_sqlite3]: -[unreleased]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.5...HEAD +[unreleased]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.7...HEAD +[0.8.7]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.6...v0.8.7 +[0.8.6]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.5...v0.8.6 [0.8.5]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.4...v0.8.5 [0.8.4]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.3...v0.8.4 [0.8.3]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.2...v0.8.3 diff --git a/README.md b/README.md index 7cc22923..a39bc702 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite ```elixir defp deps do - {:exqlite, "~> 0.8.6"} + {:exqlite, "~> 0.8.7"} end ``` diff --git a/mix.exs b/mix.exs index 32382557..41d547c4 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Exqlite.MixProject do use Mix.Project - @version "0.8.6" + @version "0.8.7" def project do [