Skip to content

Commit

Permalink
Merge pull request #462 from ungarj/release_2022.4.1
Browse files Browse the repository at this point in the history
bump version; update changelog; fix imports
  • Loading branch information
ungarj committed Apr 28, 2022
2 parents ffe2b0e + 5434a21 commit a217850
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ Changelog
#########


---------------------
2022.4.1 - 2022-04-28
---------------------

* core

* explicitly check whether futures were cancelled
* `mapchete stac create-item`: also expand custom zoom levels
* don't throw exception if STAC file cannot be written or updated
* add `mapchete stac create-protoype-files` command to write STACTA prototype datasets required by GDAL


---------------------
2022.4.0 - 2022-04-01
---------------------
Expand Down
15 changes: 13 additions & 2 deletions mapchete/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,19 @@
from mapchete._timer import Timer


__all__ = ["open", "count_tiles", "Mapchete", "MapcheteProcess", "ProcessInfo", "Timer"]
__version__ = "2022.4.0"
__all__ = [
"open",
"count_tiles",
"Mapchete",
"MapcheteProcess",
"ProcessInfo",
"Timer",
"Executor",
"FakeFuture",
"SkippedFuture",
"Job",
]
__version__ = "2022.4.1"


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit a217850

Please sign in to comment.