diff --git a/CHANGELOG.md b/CHANGELOG.md index ce66045..e8d1ebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes will be documented in this file. The format is loosely based on [Keep a Changelog][keepachangelog], and this project adheres to [Semantic Versioning][semver]. +## v0.8.2 - 2022-10-06 +- fixed: `exists()` expression building. [#92](https://github.com/elixir-sqlite/ecto_sqlite3/pull/92) + ## v0.8.1 - 2022-08-30 - changed: Allow `FROM` hints to be used. [#88](https://github.com/elixir-sqlite/ecto_sqlite3/pull/88) diff --git a/README.md b/README.md index 00d5991..5eebbb9 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ in Hexdocs. ```elixir defp deps do [ - {:ecto_sqlite3, "~> 0.8.1"} + {:ecto_sqlite3, "~> 0.8.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 2084d51..0fdaf5e 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule EctoSQLite3.MixProject do use Mix.Project - @version "0.8.1" + @version "0.8.2" def project do [