Skip to content

Commit

Permalink
bump: version 0.3.0 → 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Aug 14, 2023
1 parent 942dd51 commit ca738be
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pygadm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

session = CachedSession("pygadm", use_temp=True)

__version__ = "0.3.0"
__version__ = "0.4.0"
__author__ = "Pierrick Rambaud"
__email__ = "[email protected]"

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit ca738be

Please sign in to comment.