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].
7
7
8
8
## [ Unreleased]
9
9
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
+
10
14
11
15
## [ 0.7.3] - 2022-01-21
12
16
### Added
@@ -84,7 +88,8 @@ adheres to [Semantic Versioning][semver].
84
88
85
89
[ keepachangelog ] : < https://keepachangelog.com/en/1.0.0/ >
86
90
[ 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
88
93
[ 0.7.3 ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.2...v0.7.3
89
94
[ 0.7.2 ] : https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.1...v0.7.2
90
95
[ 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.
16
16
17
17
``` elixir
18
18
defp deps do
19
- {:ecto_sqlite3 , " ~> 0.7.3" }
19
+ [
20
+ {:ecto_sqlite3 , " ~> 0.7.4" }
21
+ ]
20
22
end
21
23
```
22
24
Original file line number Diff line number Diff line change 1
1
defmodule EctoSQLite3.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.7.3 "
4
+ @ version "0.7.4 "
5
5
6
6
def project do
7
7
[
You can’t perform that action at this time.
0 commit comments