From 88514cd1c7cafa6ec0d2d55047a931e350819f68 Mon Sep 17 00:00:00 2001 From: Jason Humber Date: Sat, 19 Oct 2024 12:34:47 -0500 Subject: [PATCH 1/2] #84 update readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 354f49f..b2fd1ec 100644 --- a/README.md +++ b/README.md @@ -418,6 +418,10 @@ Support provided for the following constraint types: ## Release History +### v0.8.1 +* add support for creating feature classes with a geometry column name other than `SHAPE` +* ensure support for Python 3.13 and update documentation / configuration + ### v0.8.0 * drop support for Python 3.7 and 3.8 * modernize type hinting From d729eb498ea4de10089a2aa80b44af5a6763959b Mon Sep 17 00:00:00 2001 From: Jason Humber Date: Sat, 19 Oct 2024 12:38:32 -0500 Subject: [PATCH 2/2] #84 version bump --- fudgeo/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fudgeo/__init__.py b/fudgeo/__init__.py index bc76da2..493d1e1 100644 --- a/fudgeo/__init__.py +++ b/fudgeo/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = '0.8.0' +__version__ = '0.8.1' if __name__ == '__main__': # pragma: no cover diff --git a/pyproject.toml b/pyproject.toml index 91ece26..459a5c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fudgeo" -version = "0.8.0" +version = "0.8.1" description = """\ GeoPackage support from Python. fudgeo is a lightweight package \ for creating OGC GeoPackages, Feature Classes, and Tables. Easily \