We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa511e2 commit e62805fCopy full SHA for e62805f
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# v1.0.2
2
+* Enhancements
3
+ * Updated dependencies to allow for using ecto 2.0 beta versions
4
+
5
# v1.0.1
6
* Enhancements
7
* Updated Postgrex and Poison optional dependencies
mix.exs
@@ -3,7 +3,7 @@ defmodule Geo.Mixfile do
def project do
[ app: :geo,
- version: "1.0.1",
+ version: "1.0.2",
elixir: "~> 1.0",
8
deps: deps,
9
description: description,
@@ -21,17 +21,18 @@ defmodule Geo.Mixfile do
21
22
defp description do
23
"""
24
- PostGIS extension for Postgrex. Also encodes and decodes WKB, WKT, and GeoJSON.
+ PostGIS extension for Postgrex. Includes PostGIS types for Ecto.
25
+ Also encodes and decodes WKB, WKT, and GeoJSON formats.
26
27
end
28
29
defp deps do
30
[
31
{:ecto, "~> 1.1 or ~> 2.0-beta", optional: true },
- {:postgrex, "~> 0.11", optional: true },
32
+ {:postgrex, "~> 0.11.1", optional: true },
33
{:poison, "~> 1.5 or ~> 2.0", optional: true},
- {:earmark, "~> 0.1", only: :dev},
34
- {:ex_doc, "~> 0.10", only: :dev}
+ {:earmark, "~> 0.2", only: :dev},
35
+ {:ex_doc, "~> 0.11", only: :dev}
36
]
37
38
0 commit comments