File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes will be documented in this file.
55The format is based on [ Keep a Changelog] [ keepachangelog ] , and this project
66adheres 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
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ in Hexdocs.
1616
1717``` elixir
1818defp deps do
19- {:ecto_sqlite3 , " ~> 0.5.5 " }
19+ {:ecto_sqlite3 , " ~> 0.5.6 " }
2020end
2121```
2222
Original file line number Diff line number Diff line change 11defmodule EctoSQLite3.MixProject do
22 use Mix.Project
33
4- @ version "0.5.5 "
4+ @ version "0.5.6 "
55
66 def project do
77 [
You can’t perform that action at this time.
0 commit comments