diff --git a/docs/changelog.md b/docs/changelog.md index bd8fa384bc..803ccdeae7 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,24 @@ # Changelog +## v0.30.0 - Dec 24, 2023 + +**What's Changed** + +- Update changelog for v0.29.6 by @giswqs in [#1840](https://github.com/gee-community/geemap/pull/1840) +- Update common.py by @tjlogue4 in [#1843](https://github.com/gee-community/geemap/pull/1843) +- Update data conversion functions by @giswqs in [#1849](https://github.com/gee-community/geemap/pull/1849) +- Update GitHub Actions to use Python 3.12 by @giswqs in [#1850](https://github.com/gee-community/geemap/pull/1850) +- Rename structured array variable to be self-describing by @jdbcode in [#1852](https://github.com/gee-community/geemap/pull/1852) +- Update zonal stats function by @giswqs in [#1854](https://github.com/gee-community/geemap/pull/1854) +- Add support for xee by @giswqs in [#1859](https://github.com/gee-community/geemap/pull/1859) +- Improve support for xee by @giswqs in [#1861](https://github.com/gee-community/geemap/pull/1861) + +**New Contributors** + +- @tjlogue4 made their first contribution in [#1843](https://github.com/gee-community/geemap/pull/1843) + +**Full Changelog**: [v0.29.6...v0.30.0](https://github.com/gee-community/geemap/compare/v0.29.6...v0.30.0) + ## v0.29.6 - Nov 26, 2023 **What's Changed** diff --git a/geemap/__init__.py b/geemap/__init__.py index 2fb265d3ea..af0504586c 100644 --- a/geemap/__init__.py +++ b/geemap/__init__.py @@ -2,7 +2,7 @@ __author__ = """Qiusheng Wu""" __email__ = "giswqs@gmail.com" -__version__ = "0.29.6" +__version__ = "0.30.0" import os diff --git a/setup.cfg b/setup.cfg index f8179db516..c8e1dad37c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.29.6 +current_version = 0.30.0 commit = True tag = True diff --git a/setup.py b/setup.py index 0806bb66d8..2b009d09e8 100644 --- a/setup.py +++ b/setup.py @@ -90,6 +90,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/gee-community/geemap", - version="0.29.6", + version="0.30.0", zip_safe=False, )