Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
[3.4.1] - 2021-12-15
Enhancements
[3.4.0] - 2021-04-10
Enhancements
- Update to Geo 3.4.0
Geo.PostGIS.Extension
now uses the:binary
format instead of:text
Changes
- Passing latitude or longitude as string instead of floats is no longer supported and raises an
argument error
[3.3.1] - 2019-12-13
Fixed
[3.3.0] - 2019-08-26
Updated
- Geo dependency to 3.3
[3.2.0] - 2019-07-23
Add
[3.1.0] - 2019-02-11
Updated
[3.0.0] - 2018-12-01
Updated
- Support for Ecto 3.0
[2.1.0] - 2018-08-28
Added
Fixed
[2.0.0] - 2018-04-14
Changed
- Use
Geo.PostGIS.Geometry
when defining structs instead ofGeo.Geometry
#instead of
schema "test" do
field :name, :string
field :geom, Geo.Geometry # or Geo.Point, Geo.LineString, etc
end
#now use
schema "test" do
field :name, :string
field :geom, Geo.PostGIS.Geometry
end
[1.1.0] - 2018-01-28
Added
[1.0.0] - 2017-07-15
Added
- PostGIS extension for Postgrex