Skip to content

Commit e62805f

Browse files
committed
Updated postgrex dependency. Updated project description
1 parent fa511e2 commit e62805f

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.0.2
2+
* Enhancements
3+
* Updated dependencies to allow for using ecto 2.0 beta versions
4+
15
# v1.0.1
26
* Enhancements
37
* Updated Postgrex and Poison optional dependencies

mix.exs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Geo.Mixfile do
33

44
def project do
55
[ app: :geo,
6-
version: "1.0.1",
6+
version: "1.0.2",
77
elixir: "~> 1.0",
88
deps: deps,
99
description: description,
@@ -21,17 +21,18 @@ defmodule Geo.Mixfile do
2121

2222
defp description do
2323
"""
24-
PostGIS extension for Postgrex. Also encodes and decodes WKB, WKT, and GeoJSON.
24+
PostGIS extension for Postgrex. Includes PostGIS types for Ecto.
25+
Also encodes and decodes WKB, WKT, and GeoJSON formats.
2526
"""
2627
end
2728

2829
defp deps do
2930
[
3031
{:ecto, "~> 1.1 or ~> 2.0-beta", optional: true },
31-
{:postgrex, "~> 0.11", optional: true },
32+
{:postgrex, "~> 0.11.1", optional: true },
3233
{:poison, "~> 1.5 or ~> 2.0", optional: true},
33-
{:earmark, "~> 0.1", only: :dev},
34-
{:ex_doc, "~> 0.10", only: :dev}
34+
{:earmark, "~> 0.2", only: :dev},
35+
{:ex_doc, "~> 0.11", only: :dev}
3536
]
3637
end
3738

0 commit comments

Comments
 (0)