geojson 4.0.1 → 4.0.2
raw patch · 19 files changed
+25/−25 lines, 19 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- LICENCE +1/−1
- geojson.cabal +7/−7
- src/Data/Geospatial.hs +1/−1
- src/Data/Geospatial/Internal/BasicTypes.hs +1/−1
- src/Data/Geospatial/Internal/CRS.hs +1/−1
- src/Data/Geospatial/Internal/GeoFeature.hs +1/−1
- src/Data/Geospatial/Internal/GeoFeatureCollection.hs +1/−1
- src/Data/Geospatial/Internal/GeoPosition.hs +1/−1
- src/Data/Geospatial/Internal/Geometry.hs +1/−1
- src/Data/Geospatial/Internal/Geometry/Aeson.hs +1/−1
- src/Data/Geospatial/Internal/Geometry/GeoLine.hs +1/−1
- src/Data/Geospatial/Internal/Geometry/GeoMultiLine.hs +1/−1
- src/Data/Geospatial/Internal/Geometry/GeoMultiPoint.hs +1/−1
- src/Data/Geospatial/Internal/Geometry/GeoMultiPolygon.hs +1/−1
- src/Data/Geospatial/Internal/Geometry/GeoPoint.hs +1/−1
- src/Data/Geospatial/Internal/Geometry/GeoPolygon.hs +1/−1
- src/Data/LineString.hs +1/−1
- src/Data/LinearRing.hs +1/−1
- src/Data/SeqHelper.hs +1/−1
LICENCE view
@@ -1,6 +1,6 @@ # BSD 3-Clause License -Copyright (c) 2014-2018, HS-GeoJSON Project+Copyright (c) 2014-2019, HS-GeoJSON Project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
geojson.cabal view
@@ -1,10 +1,10 @@ name: geojson-version: 4.0.1+version: 4.0.2 license: BSD3 license-file: LICENCE author: Dom De Re maintainer: Andrew Newman-copyright: Copyright (C) 2013-2019+copyright: Copyright (C) 2013-2020 synopsis: A thin GeoJSON Layer above the aeson library category: Data description: A thin GeoJSON Layer above the aeson library.@@ -13,8 +13,8 @@ . <https://tools.ietf.org/html/rfc7946> -homepage: https://github.com/indicatrix/hs-geojson-bug-reports: https://github.com/indicatrix/hs-geojson/issues+homepage: https://github.com/zellige/hs-geojson+bug-reports: https://github.com/zellige/hs-geojson/issues cabal-version: >= 1.10 build-type: Simple extra-source-files: README.md,@@ -22,12 +22,12 @@ source-repository head type: git- location: https://github.com/indicatrix/hs-geojson.git+ location: https://github.com/zellige/hs-geojson.git source-repository this type: git- location: https://github.com/indicatrix/hs-geojson.git- tag: 4.0.1+ location: https://github.com/zellige/hs-geojson.git+ tag: 4.0.2 library hs-source-dirs: src
src/Data/Geospatial.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/BasicTypes.hs view
@@ -6,7 +6,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.BasicTypes--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/CRS.hs view
@@ -3,7 +3,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.CRS--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/GeoFeature.hs view
@@ -6,7 +6,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.GeoFeature--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/GeoFeatureCollection.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.GeoFeature--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/GeoPosition.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.GeoPosition--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry.hs view
@@ -5,7 +5,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.Geometry--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry/Aeson.hs view
@@ -2,7 +2,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geosptial.Geometry.Aeson--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry/GeoLine.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.Geometry.GeoLine--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry/GeoMultiLine.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.Geometry.GeoMultiLine--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry/GeoMultiPoint.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.Geometry.GeoMultiPoint--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry/GeoMultiPolygon.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.Geometry.GeoMultiPolygon--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry/GeoPoint.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.Geometry.GeoPoint--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/Geospatial/Internal/Geometry/GeoPolygon.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.Geometry.GeoPolygon--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/LineString.hs view
@@ -4,7 +4,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.LineString--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/LinearRing.hs view
@@ -5,7 +5,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.LinearRing--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman --
src/Data/SeqHelper.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------- -- | -- Module : Data.Geospatial.Internal.SeqHelpers--- Copyright : (C) 2014-2018 HS-GeoJSON Project+-- Copyright : (C) 2014-2019 HS-GeoJSON Project -- License : BSD-style (see the file LICENSE.md) -- Maintainer : Andrew Newman -------------------------------------------------------------------