Skip to content

Commit 806d849

Browse files
committed
Bump to 0.7.0
1 parent 5448c34 commit 806d849

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

CHANGELOG.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ The format is based on [Keep a Changelog][keepachangelog], and this project
66
adheres to [Semantic Versioning][semver].
77

88
## [Unreleased]
9+
10+
## [0.7.0] - 2021-08-27
911
### Changed
1012
- Update dependencies to the latest.
1113
- Drop support for OTP 20. It is not supported by `telemetry` and won't compile. For now we will just support Elixir 1.8 and OTP 21.
1214

15+
1316
## [0.6.1] - 2021-08-27
1417
### Changed
1518
- UUID encoding for both `:binary_id` and `:uuid`/`Ecto.UUID` is now configurable
@@ -18,20 +21,18 @@ adheres to [Semantic Versioning][semver].
1821

1922
## [0.6.0] - 2021-08-25
2023
### Changed
21-
- `:utc_datetime` handling has been updated to completely remove the `Z` supplied and
22-
made to conform closer to what is done for Postgrex and MyXQL. https://github.com/elixir-sqlite/ecto_sqlite3/pull/49
23-
- Updated error message for OTP24 https://github.com/elixir-sqlite/ecto_sqlite3/pull/47
24+
- `:utc_datetime` handling has been updated to completely remove the `Z` supplied and made to conform closer to what is done for Postgrex and MyXQL. [#49](https://github.com/elixir-sqlite/ecto_sqlite3/pull/49)
25+
- Updated error message for OTP24 [#47](https://github.com/elixir-sqlite/ecto_sqlite3/pull/47)
2426

2527

2628
## [0.5.7] - 2021-08-17
2729
### Changed
2830
- Prepared statements can now be released manually.
29-
- Added ability to specify `:asc_nulls_last`, `:asc_nulls_first`, `:desc_nulls_last`,
30-
and `:desc_nulls_first`.
31+
- Added ability to specify `:asc_nulls_last`, `:asc_nulls_first`, `:desc_nulls_last`, and `:desc_nulls_first`.
3132

3233
## [0.5.6] - 2021-07-02
3334
### Fixed
34-
- Fix double quote missing from sql query generation. https://github.com/elixir-sqlite/ecto_sqlite3/pull/39
35+
- Fix double quote missing from sql query generation. [#39](https://github.com/elixir-sqlite/ecto_sqlite3/pull/39)
3536

3637

3738
## [0.5.5] - 2021-04-19
@@ -44,9 +45,8 @@ adheres to [Semantic Versioning][semver].
4445

4546
## [0.5.4] - 2021-04-06
4647
### Changed
47-
- Upgrade `ecto_sql` dependency to 3.6.0
48-
- Removed old `Ecto.Adapters.SQLite3.Connection.insert/6` was replaced with
49-
`Ecto.Adapters.SQLite3.Connection.insert/7`.
48+
- Upgrade `ecto_sql` dependency to `3.6.0``
49+
- Removed old `Ecto.Adapters.SQLite3.Connection.insert/6` was replaced with `Ecto.Adapters.SQLite3.Connection.insert/7`.
5050

5151

5252
## [0.5.3] - 2021-03-20
@@ -56,7 +56,7 @@ adheres to [Semantic Versioning][semver].
5656

5757
## [0.5.1] - 2021-03-18
5858
### Changed
59-
- Updated exqlite to 0.5.0
59+
- Updated exqlite to `0.5.0`
6060
- Updated documentation
6161
- Updated git repository url
6262

@@ -67,7 +67,10 @@ adheres to [Semantic Versioning][semver].
6767

6868
[keepachangelog]: <https://keepachangelog.com/en/1.0.0/>
6969
[semver]: <https://semver.org/spec/v2.0.0.html>
70-
[Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.7...HEAD
70+
[Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.0...HEAD
71+
[0.7.0]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.6.1...v0.7.0
72+
[0.6.1]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.6.0...v0.6.1
73+
[0.6.0]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.7...v0.6.0
7174
[0.5.7]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.6...v0.5.7
7275
[0.5.6]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.5...v0.5.6
7376
[0.5.5]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.5.4...v0.5.5

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.6.1"}
19+
{:ecto_sqlite3, "~> 0.7.0"}
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.6.1"
4+
@version "0.7.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)