Skip to content

Commit 55a5d50

Browse files
committed
Bump to v0.8.0
1 parent 5b585f7 commit 55a5d50

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ adheres to [Semantic Versioning][semver].
77

88
## [Unreleased]
99

10+
## [0.8.0] - 2022-08-04
11+
### Changed
12+
- Change minimum elixir version to `~> 1.11`
13+
14+
### Added
15+
- Allow index hints on joins. [#83](https://github.com/elixir-sqlite/ecto_sqlite3/pull/83)
16+
- Allow datetime type to be configurable. [#84](https://github.com/elixir-sqlite/ecto_sqlite3/pull/84)
17+
18+
1019
## [0.7.7] - 2022-06-21
1120
### Fixed
1221
- Fixed issue with missing space in `EXPLAIN QUERY PLAN`. [#78](https://github.com/elixir-sqlite/ecto_sqlite3/pull/78)
@@ -104,6 +113,7 @@ adheres to [Semantic Versioning][semver].
104113
[keepachangelog]: <https://keepachangelog.com/en/1.0.0/>
105114
[semver]: <https://semver.org/spec/v2.0.0.html>
106115
[Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.7...HEAD
116+
[0.8.0]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.8.0...v0.7.7
107117
[0.7.7]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.6...v0.7.7
108118
[0.7.6]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.5...v0.7.6
109119
[0.7.5]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.4...v0.7.5

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ in Hexdocs.
1717
```elixir
1818
defp deps do
1919
[
20-
{:ecto_sqlite3, "~> 0.7.7"}
20+
{:ecto_sqlite3, "~> 0.8.0"}
2121
]
2222
end
2323
```

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

66
def project do
77
[

0 commit comments

Comments
 (0)