Skip to content

Commit 886bd6f

Browse files
committed
Bump to 0.5.7
1 parent b2d6cea commit 886bd6f

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,41 @@ 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+
## [Unreleased]
9+
10+
## [0.5.7] - 2021-08-17
11+
### Changed
12+
- Prepared statements can now be released manually.
13+
- Added ability to specify `:asc_nulls_last`, `:asc_nulls_first`, `:desc_nulls_last`,
14+
and `:desc_nulls_first`.
815

916
## [0.5.6] - 2021-07-02
17+
### Fixed
1018
- Fix double quote missing from sql query generation. https://github.com/elixir-sqlite/ecto_sqlite3/pull/39
1119

1220

1321
## [0.5.5] - 2021-04-19
14-
- Fix "database is locked" issue by setting `journal_mode` at `storage_up` time.
22+
### Added
1523
- Add :check constraint column option.
1624

25+
### Fixed
26+
- Fix "database is locked" issue by setting `journal_mode` at `storage_up` time.
27+
1728

1829
## [0.5.4] - 2021-04-06
30+
### Changed
1931
- Upgrade `ecto_sql` dependency to 3.6.0
2032
- Removed old `Ecto.Adapters.SQLite3.Connection.insert/6` was replaced with
2133
`Ecto.Adapters.SQLite3.Connection.insert/7`.
2234

2335

2436
## [0.5.3] - 2021-03-20
37+
### Added
2538
- Added `collate:` opts support to `:string` column type
2639

2740

2841
## [0.5.1] - 2021-03-18
42+
### Changed
2943
- Updated exqlite to 0.5.0
3044
- Updated documentation
3145
- Updated git repository url
@@ -37,6 +51,8 @@ adheres to [Semantic Versioning][semver].
3751

3852
[keepachangelog]: <https://keepachangelog.com/en/1.0.0/>
3953
[semver]: <https://semver.org/spec/v2.0.0.html>
54+
[Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.7...HEAD
55+
[0.5.7]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.6...v0.5.7
4056
[0.5.6]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.5...v0.5.6
4157
[0.5.5]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.4...v0.5.5
4258
[0.5.4]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.3...v0.5.4

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.6"
4+
@version "0.5.7"
55

66
def project do
77
[

0 commit comments

Comments
 (0)