Skip to content

Commit

Permalink
Merge pull request #68 from axelson/ecto-sql-tests
Browse files Browse the repository at this point in the history
Switch back to depending on ecto instead of ecto_sql
  • Loading branch information
benwilson512 authored Feb 7, 2019
2 parents 3168ee7 + bb8117b commit fd79cc6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Changelog

## v1.0.6 - Unreleased

- Bug Fix: Depend on `ecto` instead of `ecto_sql`. Fixes Ecto 2.x support (#67)

## v1.0.5 - 2019-02-03

- Bug Fix: Fix dialyzer spec for run_batch function

**Breaking change:** Dependency changed from `ecto` to `ecto_sql` which
unintentionally breaks `Dataloader.Ecto` on Ecto 2.x projects (#67).

## v1.0.4 - 2018-09-14

- Bug Fix: Poor supervisor structure has been improved, which fixes large memory
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ defmodule Dataloader.Mixfile do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto_sql, "~> 3.0", optional: true},
{:ecto, ">= 0.0.0", optional: true},
{:ecto_sql, "~> 3.0", optional: true, only: :test},
{:postgrex, "~> 0.14", only: :test},
{:dialyxir, "~> 0.5", only: :dev},
{:ex_doc, ">= 0.0.0", only: [:dev]}
Expand Down

0 comments on commit fd79cc6

Please sign in to comment.