File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ adheres to [Semantic Versioning][semver].
77
88## [ Unreleased]
99
10+ ## [ 0.7.4] - 2022-03-16
11+ ### Fixed
12+ - Fixed double encoding of a string when converting to json. [ #65 ] ( https://github.com/elixir-sqlite/ecto_sqlite3/pull/65 )
13+
1014
1115## [ 0.7.3] - 2022-01-21
1216### Added
@@ -84,7 +88,8 @@ adheres to [Semantic Versioning][semver].
8488
8589[ keepachangelog ] : < https://keepachangelog.com/en/1.0.0/ >
8690[ semver ] : < https://semver.org/spec/v2.0.0.html >
87- [ Unreleased ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.3...HEAD
91+ [ Unreleased ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.4...HEAD
92+ [ 0.7.4 ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.3...v0.7.4
8893[ 0.7.3 ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.2...v0.7.3
8994[ 0.7.2 ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.1...v0.7.2
9095[ 0.7.1 ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.0...v0.7.1
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ in Hexdocs.
1616
1717``` elixir
1818defp deps do
19- {:ecto_sqlite3 , " ~> 0.7.3" }
19+ [
20+ {:ecto_sqlite3 , " ~> 0.7.4" }
21+ ]
2022end
2123```
2224
Original file line number Diff line number Diff line change 11defmodule EctoSQLite3.MixProject do
22 use Mix.Project
33
4- @ version "0.7.3 "
4+ @ version "0.7.4 "
55
66 def project do
77 [
You can’t perform that action at this time.
0 commit comments