diff --git a/CHANGELOG.md b/CHANGELOG.md index 825c32f..9ffabed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,11 @@ # Changelog + +## 0.1.0 (2025-01-07) + +### Feat + +- first commit, functional code, add license + +### Fix + +- add check for correct type of geojson input diff --git a/geojson_aoi/__version__.py b/geojson_aoi/__version__.py index 3dc1f76..d3ec452 100644 --- a/geojson_aoi/__version__.py +++ b/geojson_aoi/__version__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index 01d7962..6d11d13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "geojson-aoi-parser" -version = "0.1.0" +version = "0.2.0" description = "Parse and normalize a GeoJSON area of interest, using pure Python." readme = "README.md" license = {text = "GPL-3.0-only"} @@ -48,7 +48,7 @@ testpaths = [ [tool.commitizen] name = "cz_conventional_commits" -version = "0.1.0" +version = "0.2.0" version_files = [ "pyproject.toml:version", "geojson_aoi/__version__.py",