Skip to content

Commit

Permalink
Support Geo v4.0.0
Browse files Browse the repository at this point in the history
This adds support for either releases of Geo compatible with v3.6 *or* v4.0. For our purposes, the breaking changes in v4.0.0 are not signficant.

I've tested overriding the Geo dependency to v4.0.0 on the Felt codebase, where we have a great deal of unit tests round-tripping imports of GeoJSON, and aside from the default SRID change, everything Just Works™.
  • Loading branch information
s3cur3 committed Sep 17, 2024
1 parent b538db7 commit bce1dfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule GeoPostgis.Mixfile do
use Mix.Project

@source_url "https://github.com/felt/geo_postgis"
@version "3.7.0"
@version "3.7.1"

def project do
[
Expand All @@ -27,7 +27,7 @@ defmodule GeoPostgis.Mixfile do

defp deps do
[
{:geo, "~> 3.6"},
{:geo, "~> 3.6 or ~> 4.0"},
{:postgrex, ">= 0.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:ecto, "~> 3.0", optional: true},
Expand Down

0 comments on commit bce1dfe

Please sign in to comment.