diff --git a/HISTORY.md b/HISTORY.md index 3c0f60e03e..908b2392ab 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,11 @@ +# Release 0.22.3 + +* TileDB-Py 0.22.3 includes TileDB Embedded [2.16.3](https://github.com/TileDB-Inc/TileDB/releases/tag/2.16.3) + +## Improvements + +* Wrap Delta filter. [#1710](https://github.com/TileDB-Inc/TileDB-Py/pull/1710) + # Release 0.22.2 * TileDB-Py 0.22.2 includes TileDB Embedded [2.16.2](https://github.com/TileDB-Inc/TileDB/releases/tag/2.16.2) diff --git a/misc/azure-release.yml b/misc/azure-release.yml index abfe53d815..662cd86b4b 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.22.2 - LIBTILEDB_VERSION: 2.16.2 - LIBTILEDB_SHA: 07b65de96fbb9626180ba5014f958abba55b0832 + TILEDBPY_VERSION: 0.22.3 + LIBTILEDB_VERSION: 2.16.3 + LIBTILEDB_SHA: 194b5ae2941d7b6631fba367a7afdd79350332e7 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 5229718d31..649fb083e7 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # - this is for builds-from-source # - release builds are controlled by `misc/azure-release.yml` # - this should be set to the current core release, not `dev` -TILEDB_VERSION = "2.16.2" +TILEDB_VERSION = "2.16.3" # allow overriding w/ environment variable TILEDB_VERSION = os.environ.get("TILEDB_VERSION") or TILEDB_VERSION