From 6e939ca4d4558b96a0568b7f9c1cba2727b7371f Mon Sep 17 00:00:00 2001 From: nicklvsa Date: Wed, 23 Oct 2024 11:07:43 -0400 Subject: [PATCH] version bump and docs update --- CHANGELOG.md | 3 +++ README.md | 4 +++- mapbox_tilesets/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 021f06f..e0be15b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ======= +# 1.12.0 (2024-10-23) +- Added command `tilesets estimate-cu` that returns an estimated compute unit value for a user's tileset. + # 1.11.1 (2024-08-01) - Added command `tilesets upload-raster-source` to upload raster files as sources diff --git a/README.md b/README.md index 5ba04f1..bb5c259 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,9 @@ tilesets delete-source user source_id tilesets estimate-cu -s/--sources -b/--num-bands --raw ``` -Estimates the CU value of a tileset before publishing it. This is useful to understand the estimated cost a given tileset before you start processing the data. Note: This is currently only available to tileset recipes with type `raster` and `rasterarray`. +Estimates the CU value of a tileset before publishing it. This is useful to understand the estimated cost a given tileset before you start processing the data. Note: This is currently only available to tileset recipes with type `raster` or `rasterarray`. + +See https://docs.mapbox.com/help/glossary/compute-unit/ for more information. Flags: - `-s` or `--sources` [optional]: Local path to the sources that your recipe points at. This is highly recommeneded. diff --git a/mapbox_tilesets/__init__.py b/mapbox_tilesets/__init__.py index 46c209e..e65a1a1 100644 --- a/mapbox_tilesets/__init__.py +++ b/mapbox_tilesets/__init__.py @@ -1,3 +1,3 @@ """mapbox_tilesets package""" -__version__ = "1.11.1" +__version__ = "1.12.0"