diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0d1bebe1..093be7e3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.6.0" + ".": "1.6.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f842adfb..2e5bbeea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.6.1](https://github.com/City-of-Helsinki/city-infrastructure-platform/compare/city-infrastructure-platform-v1.6.0...city-infrastructure-platform-v1.6.1) (2025-02-04) + + +### Bug Fixes + +* Plan WFS now uses convex_hull instead of Multipolygon as geometry type ([23d89d2](https://github.com/City-of-Helsinki/city-infrastructure-platform/commit/23d89d2a72cab50c92847b3bf5f63ed5682cc580)) + ## [1.6.0](https://github.com/City-of-Helsinki/city-infrastructure-platform/compare/city-infrastructure-platform-v1.5.0...city-infrastructure-platform-v1.6.0) (2025-01-31) diff --git a/pyproject.toml b/pyproject.toml index 2b2c01f9..7aa5fc5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "city-infrastructure-platform" -version = "1.6.0" +version = "1.6.1" description = "" authors = [] diff --git a/setup.cfg b/setup.cfg index 2f07f7e1..e0b7e32b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0 +current_version = 1.6.1 commit = True tag = True diff --git a/setup.py b/setup.py index 9334456e..652e3742 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="city-infrastructure-platform", - version="1.6.0", + version="1.6.1", license="MIT", packages=find_packages(), include_package_data=True,