diff --git a/.github/workflows/daily-tests.yml b/.github/workflows/daily-tests.yml index 1e89769be4..e92d9115c2 100644 --- a/.github/workflows/daily-tests.yml +++ b/.github/workflows/daily-tests.yml @@ -10,14 +10,14 @@ jobs: ci1: uses: ./.github/workflows/daily-test-build.yml with: - libtiledb_version: '2.26.0' + libtiledb_version: '2.27.0' ci2: uses: ./.github/workflows/daily-test-build.yml with: - libtiledb_version: '2.25.0' + libtiledb_version: '2.26.0' ci3: uses: ./.github/workflows/daily-test-build-numpy.yml with: - libtiledb_version: '2.25.0' + libtiledb_version: '2.26.0' diff --git a/CMakeLists.txt b/CMakeLists.txt index dfd75c62dc..6d8ed37ed9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,8 +46,8 @@ if (NOT TileDB_FOUND) message(STATUS "Downloading TileDB default version ...") # Download latest release fetch_prebuilt_tiledb( - VERSION 2.26.2 - RELLIST_HASH SHA256=86c19d7c5246cb18e370a4272cead63ea84bd651789842e618de4d57d4510522 + VERSION 2.27.0 + RELLIST_HASH SHA256=8056514b1949cdab19405376e32e299578491a6d3e953321d12d761f94dc19b9 ) endif() find_package(TileDB REQUIRED) diff --git a/HISTORY.md b/HISTORY.md index c8f42bf90c..9507d07b3e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,15 @@ +# Release 0.33.0 + +* TileDB-Py 0.33.0 includes TileDB Embedded [2.27.0](https://github.com/TileDB-Inc/TileDB/releases/tag/2.27.0) + +## What's Changed + +* Fix `stats_dump` broken return value type by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2104 +* Enable builds for Python 3.13 by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2107 +* Implement serialization functionality for `Config` and `VFS` objects by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2110 + +**Full Changelog**: https://github.com/TileDB-Inc/TileDB-Py/compare/0.32.5...0.33.0 + # Release 0.32.5 * TileDB-Py 0.32.5 includes TileDB Embedded [2.26.2](https://github.com/TileDB-Inc/TileDB/releases/tag/2.26.2)