From 69984faf3b73c5fa4261216e98221d04acd952cd Mon Sep 17 00:00:00 2001 From: Matthew Johnston Date: Wed, 16 Mar 2022 09:18:00 -0500 Subject: [PATCH] Bump to v0.7.4 --- CHANGELOG.md | 7 ++++++- README.md | 4 +++- mix.exs | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bae5be..d0c4be3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ adheres to [Semantic Versioning][semver]. ## [Unreleased] +## [0.7.4] - 2022-03-16 +### Fixed +- Fixed double encoding of a string when converting to json. [#65](https://github.com/elixir-sqlite/ecto_sqlite3/pull/65) + ## [0.7.3] - 2022-01-21 ### Added @@ -84,7 +88,8 @@ adheres to [Semantic Versioning][semver]. [keepachangelog]: [semver]: -[Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.3...HEAD +[Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.4...HEAD +[0.7.4]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.3...v0.7.4 [0.7.3]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.2...v0.7.3 [0.7.2]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.1...v0.7.2 [0.7.1]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.0...v0.7.1 diff --git a/README.md b/README.md index 0bee047..6e79d14 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,9 @@ in Hexdocs. ```elixir defp deps do - {:ecto_sqlite3, "~> 0.7.3"} + [ + {:ecto_sqlite3, "~> 0.7.4"} + ] end ``` diff --git a/mix.exs b/mix.exs index 65204ff..4a28e41 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule EctoSQLite3.MixProject do use Mix.Project - @version "0.7.3" + @version "0.7.4" def project do [