Skip to content

Commit

Permalink
Bump to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed Aug 4, 2022
1 parent 5b585f7 commit 55a5d50
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ adheres to [Semantic Versioning][semver].

## [Unreleased]

## [0.8.0] - 2022-08-04
### Changed
- Change minimum elixir version to `~> 1.11`

### Added
- Allow index hints on joins. [#83](https://github.com/elixir-sqlite/ecto_sqlite3/pull/83)
- Allow datetime type to be configurable. [#84](https://github.com/elixir-sqlite/ecto_sqlite3/pull/84)


## [0.7.7] - 2022-06-21
### Fixed
- Fixed issue with missing space in `EXPLAIN QUERY PLAN`. [#78](https://github.com/elixir-sqlite/ecto_sqlite3/pull/78)
Expand Down Expand Up @@ -104,6 +113,7 @@ adheres to [Semantic Versioning][semver].
[keepachangelog]: <https://keepachangelog.com/en/1.0.0/>
[semver]: <https://semver.org/spec/v2.0.0.html>
[Unreleased]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.7...HEAD
[0.8.0]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.8.0...v0.7.7
[0.7.7]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.6...v0.7.7
[0.7.6]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.5...v0.7.6
[0.7.5]: https://github.com/elixir-sqlite/ecto_sqlite3/compare/v0.7.4...v0.7.5
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ in Hexdocs.
```elixir
defp deps do
[
{:ecto_sqlite3, "~> 0.7.7"}
{:ecto_sqlite3, "~> 0.8.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule EctoSQLite3.MixProject do
use Mix.Project

@version "0.7.7"
@version "0.8.0"

def project do
[
Expand Down

0 comments on commit 55a5d50

Please sign in to comment.