From e58600cb1fcdce7bfb6e39bce6c6175e9b3b676c Mon Sep 17 00:00:00 2001 From: nguyenv Date: Fri, 3 Nov 2023 13:47:02 -0500 Subject: [PATCH] Release 0.23.4 Against 2.17.4 (#1861) --- HISTORY.md | 16 ++++++++++++++-- misc/azure-release.yml | 6 +++--- setup.py | 2 +- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 63573a75c7..a5a7eaca92 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,8 +1,20 @@ -# Release 0.23.3 +# Release 0.23.4 + +* TileDB-Py 0.23.4 includes TileDB Embedded [2.17.4](https://github.com/TileDB-Inc/TileDB/releases/tag/2.17.4) + +## Improvements + +* Add `COMPRESSION_REINTERPRET_DATATYPE` to allowed `FilterOption` [#1855](https://github.com/TileDB-Inc/TileDB-Py/pull/1855) +* Add `filter_name` to `Filter` class [#1856](https://github.com/TileDB-Inc/TileDB-Py/pull/1856) +## Bug Fixes + +* Do not use `dtype.kind` in enumeration extend type checking [#1853](https://github.com/TileDB-Inc/TileDB-Py/pull/1853) +* Empty enumerations should be casted to the dtype of the enumeration [#1854](https://github.com/TileDB-Inc/TileDB-Py/pull/1854) +* Correct writing nullable string attributes and all nulled data [#1848](https://github.com/TileDB-Inc/TileDB-Py/pull/1848) * Pandas 2+ fix: use `pa.schema.with_metadata`, replacing passing metadata to `pa.schema` constructor [#1858](https://github.com/TileDB-Inc/TileDB-Py/pull/1858) -# Release 0.23.2 +# Release 0.23.3 ## Bug Fixes diff --git a/misc/azure-release.yml b/misc/azure-release.yml index 0774fc483b..c060b6e48b 100644 --- a/misc/azure-release.yml +++ b/misc/azure-release.yml @@ -6,10 +6,10 @@ stages: LIBTILEDB_VERSION: dev LIBTILEDB_SHA: dev ${{ else }}: - TILEDBPY_VERSION: 0.23.3 + TILEDBPY_VERSION: 0.23.4 # NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA - LIBTILEDB_VERSION: 2.17.3 - LIBTILEDB_SHA: 0c2de5830bdce30cc0488053636eaa26129bffb0 + LIBTILEDB_VERSION: 2.17.4 + LIBTILEDB_SHA: a1f648ebef5e520f72e51a4f23d5b37921105d96 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 ff376d55f3..5df3f05c26 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.17.3" +TILEDB_VERSION = "2.17.4" # allow overriding w/ environment variable TILEDB_VERSION = os.environ.get("TILEDB_VERSION") or TILEDB_VERSION