diff --git a/HISTORY.md b/HISTORY.md index 75caf48443..1189f56e4b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,7 @@ -# In Progress +# TileDB-Py 0.16.2 Release Notes + +## TileDB Embedded updates: +* TileDB-Py 0.16.2 includes TileDB Embedded [TileDB 2.10.2](https://github.com/TileDB-Inc/TileDB/releases/tag/2.10.2) ## Improvements * `setup.py` retrieves core version by using `ctypes` to call `tiledb_version` rather than parsing `tiledb_version.h` [#1191](https://github.com/TileDB-Inc/TileDB-Py/pull/1191) diff --git a/misc/azure-release.yml b/misc/azure-release.yml index f09aec35cc..c1e3a33f55 100644 --- a/misc/azure-release.yml +++ b/misc/azure-release.yml @@ -6,9 +6,9 @@ stages: LIBTILEDB_VERSION: dev LIBTILEDB_SHA: dev ${{ else }}: - TILEDBPY_VERSION: 0.16.1 - LIBTILEDB_VERSION: 2.10.1 - LIBTILEDB_SHA: 6535d4cfdd6cc520b52a760b4185a26aa14c3354 + TILEDBPY_VERSION: 0.16.2 + LIBTILEDB_VERSION: 2.10.2 + LIBTILEDB_SHA: 9ab84f907fa5bbbc22099df220ac86f1391509f1 LIBTILEDB_REPO: https://github.com/TileDB-Inc/TileDB TILEDB_SRC: "$(Build.Repository.Localpath)/tiledb_src" TILEDB_BUILD: "$(Build.Repository.Localpath)/tiledb_build" diff --git a/setup.py b/setup.py index 74de0c7d36..6a6635ad7b 100644 --- a/setup.py +++ b/setup.py @@ -21,9 +21,7 @@ ### DO NOT USE ON CI # Target branch: Note that this should be set to the current core release, not `dev` -TILEDB_VERSION = ( - "6535d4cfdd6cc520b52a760b4185a26aa14c3354" # Update after 2.10.1 tagged -) +TILEDB_VERSION = "2.10.2" # allow overriding w/ environment variable TILEDB_VERSION = os.environ.get("TILEDB_VERSION") or TILEDB_VERSION