Skip to content

Latest commit

 

History

History
86 lines (50 loc) · 1.71 KB

CHANGELOG.md

File metadata and controls

86 lines (50 loc) · 1.71 KB

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.0] - 2021-04-10

Enhancements

  • Update to Geo 3.4.0
  • Geo.PostGIS.Extension now uses the :binary format instead of :text

[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 of Geo.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