diff --git a/CHANGELOG.md b/CHANGELOG.md index cc4bbb8..b00d29e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## :package: [0.3.2](https://pypi.org/project/geometry-to-spatialite/0.3.2/) - 2020-10-18 + +* Throw `TypeError` instead of `DataImportError` if SRID is not an int +* Tested on python 3.9 +* Documentation improvements + ## :package: [0.3.1](https://pypi.org/project/geometry-to-spatialite/0.3.1/) - 2020-06-07 * Ensure co-ordinates aren't rounded to 6 decimal places when importing geojson diff --git a/pyproject.toml b/pyproject.toml index 7f7c440..0372e11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,13 @@ [tool.poetry] name = "geometry-to-spatialite" -version = "0.3.1" +version = "0.3.2" description = "Import geographic and spatial data from files into a SpatiaLite DB" authors = ["chris48s"] license = "MIT" readme = "README.md" repository = "https://github.com/chris48s/geometry-to-spatialite" homepage = "https://github.com/chris48s/geometry-to-spatialite" +documentation = "https://chris48s.github.io/geometry-to-spatialite" [tool.poetry.dependencies] python = "^3.6"