diff --git a/HISTORY.md b/HISTORY.md index 890d522c0f..f1dd591d9c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,16 @@ +# Release 0.30.2 + +## Packaging Notes + +While we currently plan to maintain support for CentOS 7-compatible systems (GLIBC 2.17) through TileDB 2.31, ecosystem and infrastructure updates following the CentOS 7 end-of-life on 30/Jun/2024 may necessitate dropping support earlier. Please contact us if you still use a CentOS 7 (GLIBC 2.17)-like Linux distribution. + +## Improvements + +* Fix OverflowError: Python int too large to convert to C long by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2000 +* Wrap as_built function by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1994 +* Fix array.query() incorrectly handling nullables by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1998 +* Add offending column when from_pandas -> _get_column_infos fails by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1997 + # Release 0.30.1 * TileDB-Py 0.30.1 includes TileDB Embedded [2.24.1](https://github.com/TileDB-Inc/TileDB/releases/tag/2.24.1) diff --git a/misc/azure-release.yml b/misc/azure-release.yml index 4d179206b1..1d1578d855 100644 --- a/misc/azure-release.yml +++ b/misc/azure-release.yml @@ -6,11 +6,11 @@ stages: LIBTILEDB_VERSION: dev LIBTILEDB_SHA: dev ${{ else }}: - TILEDBPY_VERSION: 0.30.1 + TILEDBPY_VERSION: 0.30.2 # NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA - LIBTILEDB_VERSION: "2.24.1" + LIBTILEDB_VERSION: "2.24.2" # NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA - LIBTILEDB_SHA: db03540e685296f0188819869eec92bece164db2 + LIBTILEDB_SHA: 76cd03c39d459b7659ccccb692864d81dd87d36c 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 8b48d196fe..65c057c612 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,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.24.1" +TILEDB_VERSION = "2.24.2" # allow overriding w/ environment variable TILEDB_VERSION = (