Skip to content

Commit 69984fa

Browse files
committed
Bump to v0.7.4
1 parent ce460b7 commit 69984fa

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ in Hexdocs.
1616

1717
```elixir
1818
defp deps do
19-
{:ecto_sqlite3, "~> 0.7.3"}
19+
[
20+
{:ecto_sqlite3, "~> 0.7.4"}
21+
]
2022
end
2123
```
2224

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule EctoSQLite3.MixProject do
22
use Mix.Project
33

4-
@version "0.7.3"
4+
@version "0.7.4"
55

66
def project do
77
[

0 commit comments

Comments
 (0)