From 55a5d50cf11392da9b929c21c049ca068584336f Mon Sep 17 00:00:00 2001 From: Matthew Johnston Date: Thu, 4 Aug 2022 15:16:54 -0500 Subject: [PATCH] Bump to v0.8.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 632b691..d640953 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ adheres to [Semantic Versioning][semver]. ## [Unreleased] +## [0.8.0] - 2022-08-04 +### Changed +- Change minimum elixir version to `~> 1.11` + +### Added +- Allow index hints on joins. [#83](https://github.com/elixir-sqlite/ecto_sqlite3/pull/83) +- Allow datetime type to be configurable. [#84](https://github.com/elixir-sqlite/ecto_sqlite3/pull/84) + + ## [0.7.7] - 2022-06-21 ### Fixed - Fixed issue with missing space in `EXPLAIN QUERY PLAN`. [#78](https://github.com/elixir-sqlite/ecto_sqlite3/pull/78) @@ -104,6 +113,7 @@ adheres to [Semantic Versioning][semver]. [keepachangelog]: [semver]: [Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.7...HEAD +[0.8.0]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.8.0...v0.7.7 [0.7.7]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.6...v0.7.7 [0.7.6]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.5...v0.7.6 [0.7.5]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.4...v0.7.5 diff --git a/README.md b/README.md index 8270199..96d5bcb 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ in Hexdocs. ```elixir defp deps do [ - {:ecto_sqlite3, "~> 0.7.7"} + {:ecto_sqlite3, "~> 0.8.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 080328a..df1b88f 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule EctoSQLite3.MixProject do use Mix.Project - @version "0.7.7" + @version "0.8.0" def project do [