Skip to content

Commit 38efd93

Browse files
committed
Bump to version 0.5.6
1 parent fd06167 commit 38efd93

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes will be documented in this file.
55
The format is based on [Keep a Changelog][keepachangelog], and this project
66
adheres to [Semantic Versioning][semver].
77

8+
9+
## [0.5.6] - 2021-07-02
10+
- Fix double quote missing from sql query generation. https://github.com/elixir-sqlite/ecto_sqlite3/pull/39
11+
12+
813
## [0.5.5] - 2021-04-19
914
- Fix "database is locked" issue by setting `journal_mode` at `storage_up` time.
1015
- Add :check constraint column option.
@@ -32,6 +37,8 @@ adheres to [Semantic Versioning][semver].
3237

3338
[keepachangelog]: <https://keepachangelog.com/en/1.0.0/>
3439
[semver]: <https://semver.org/spec/v2.0.0.html>
40+
[0.5.6]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.5...v0.5.6
41+
[0.5.5]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.4...v0.5.5
3542
[0.5.4]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.3...v0.5.4
3643
[0.5.3]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.1...v0.5.3
3744
[0.5.1]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.0...v0.5.1

README.md

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

1717
```elixir
1818
defp deps do
19-
{:ecto_sqlite3, "~> 0.5.5"}
19+
{:ecto_sqlite3, "~> 0.5.6"}
2020
end
2121
```
2222

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.5.5"
4+
@version "0.5.6"
55

66
def project do
77
[

0 commit comments

Comments
 (0)