diff --git a/build-docs.sh b/build-docs.sh new file mode 100755 index 00000000..ae81fe1a --- /dev/null +++ b/build-docs.sh @@ -0,0 +1,6 @@ +#!/bin/sh +set -e + +cp CHANGELOG.md docs/changelog.md + +poetry run mkdocs build diff --git a/docs/changelog.md b/docs/changelog.md new file mode 100644 index 00000000..03ed3ca0 --- /dev/null +++ b/docs/changelog.md @@ -0,0 +1,14 @@ +# Changelog for MapLibre for Python + +## maplibre v0.1.2 + +* Add `Map.set_data` +* Add `Map.set_visibility` +* Do not import `ipywidget.MapWidget` in `__init__` and skip tests for `MapWidget`, because it causes a `core dumped` error, see [anywidget issue](https://github.com/manzt/anywidget/issues/374) +* Remove `requests` dependency +* Remove dead code +* Add more examples + +## maplibre v0.1.1 + +* Initial PyPI release diff --git a/mkdocs.yml b/mkdocs.yml index 4772d05e..24767f1b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -15,6 +15,7 @@ nav: - Layers: layers.md - Shiny: shiny.md - Jupyter: jupyter.md + - Changelog: changelog.md - API Documentation: - Map: api/map.md - Layer: api/layer.md