Skip to content

Commit

Permalink
Made postgrex a non-optional requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjos committed Aug 27, 2015
1 parent 8712ae5 commit d1c8e75
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.16.1
* Enhancements
* Made Postgrex a required dependency

# v0.16.0
* Enhancements
* Updated to Ecto 1.0
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Geo.Mixfile do

def project do
[ app: :geo,
version: "0.16.0",
version: "0.16.1",
elixir: "~> 1.0.0",
deps: deps,
description: description,
Expand All @@ -29,7 +29,7 @@ defmodule Geo.Mixfile do
[
{:poison, "~> 1.0"},
{:ecto, "~> 1.0" },
{:postgrex, "~> 0.9", optional: true },
{:postgrex, "~> 0.9"},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.6", only: :dev}
]
Expand Down

0 comments on commit d1c8e75

Please sign in to comment.