From ca738be5c386e879dcac9f562986a07b3d4720dd Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:40:24 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.3.0=20=E2=86=92=200.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 15 +++++++++++++++ pygadm/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f149fc..2c49e93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.4.0 (2023-08-14) + +### Feat + +- access the whole list when calling `get_name`without parameters (#37) + +### Fix + +- get all the data names get all the data names when no parameter is set +- solve documentation build issue with GEE (#40) + +### Refactor + +- clean never used file + ## 0.3.0 (2023-08-14) ### Feat diff --git a/pygadm/__init__.py b/pygadm/__init__.py index 2af9f0c..f41ac97 100644 --- a/pygadm/__init__.py +++ b/pygadm/__init__.py @@ -20,7 +20,7 @@ session = CachedSession("pygadm", use_temp=True) -__version__ = "0.3.0" +__version__ = "0.4.0" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com" diff --git a/pyproject.toml b/pyproject.toml index a00dbb7..6f3c4cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pygadm" -version = "0.3.0" +version = "0.4.0" description = "Easy access to administrative boundary defined by GADM from Python scripts" keywords = ["Python"] classifiers = [ @@ -77,7 +77,7 @@ pygadm = ["data/gadm_database.parquet", "data/gadm_continent.json"] changelog_file = "CHANGELOG.md" tag_format = "$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.3.0" +version = "0.4.0" version_files = ["pyproject.toml:version", "pygadm/__init__.py:__version__"] [tool.pytest.ini_options]