From 2437b06cae342cdcdaa3e49360dd55d45de93d7b Mon Sep 17 00:00:00 2001 From: Christoph Rieke Date: Sun, 29 Dec 2024 22:16:24 +0100 Subject: [PATCH] bump to v0.5.0 --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62299e0..8845629 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,14 @@ Update your installation to the latest version: pip install prettymapp --upgrade ``` +## 0.5.0 +**November 30, 2024** + +- Adds boolean `credits` parameter to the `Plot` class. Set to `False` to hide the OSM/package credits on the map. +- Fixes an issue where customized landcover_classes where ignored in `get_osm_geometries`. +- Fixes an issue where setting a landcover_class to `False` resulted in a Keyerror. +- Various documentation & example improvements. + ## 0.4.0 **November 30, 2024** diff --git a/pyproject.toml b/pyproject.toml index ff98228..d4ff395 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "prettymapp" -version = "0.4.0" +version = "0.5.0" description = "Create beautiful maps from OpenStreetMap data" readme = "README.md" requires-python = ">=3.11"