From 2233c68fa8b0fe7669e54194d2d0ee415f562302 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Tue, 14 May 2024 11:44:19 -0400 Subject: [PATCH] Bump to 0.9.2 (#525) Update changelog and bump version --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68ed320..018164a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.9.2] - 2024-05-14 + +### Fixes :bug: + +- Reverse the layer order for automatically split geometry by @RaczeQ in https://github.com/developmentseed/lonboard/pull/516 + +### What's Changed + +- Perf: Use ravel, not flatten, for numpy to pyarrow by @kylebarron in https://github.com/developmentseed/lonboard/pull/512 +- Update docstring in as_html by @kylebarron in https://github.com/developmentseed/lonboard/pull/519 +- Add type checks to fly_to by @kylebarron in https://github.com/developmentseed/lonboard/pull/521 +- Add pypi classifiers by @kylebarron in https://github.com/developmentseed/lonboard/pull/523 + +### New Contributors + +- @RaczeQ made their first contribution in https://github.com/developmentseed/lonboard/pull/516 + +**Full Changelog**: https://github.com/developmentseed/lonboard/compare/v0.9.1...v0.9.2 + ## [0.9.1] - 2024-05-07 ### Fixes :bug: diff --git a/pyproject.toml b/pyproject.toml index db6d9b5..51a9859 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lonboard" -version = "0.9.1" +version = "0.9.2" description = "Fast, interactive geospatial data visualization in Jupyter." authors = ["Kyle Barron "] license = "MIT"