diff --git a/.github/workflows/daily-tests.yml b/.github/workflows/daily-tests.yml index 1d72d1d564..5f2bf7cdd7 100644 --- a/.github/workflows/daily-tests.yml +++ b/.github/workflows/daily-tests.yml @@ -11,7 +11,7 @@ jobs: name: Daily Test Build (libtiledb ${{ matrix.libtiledb_version }}) strategy: matrix: - libtiledb_version: ['2.29.2', '2.28.1'] + libtiledb_version: ['2.30.0', '2.29.2'] uses: ./.github/workflows/daily-test-build.yml with: libtiledb_version: ${{ matrix.libtiledb_version }} @@ -20,7 +20,7 @@ jobs: name: Daily Test Build NumPy (libtiledb ${{ matrix.libtiledb_version }}) strategy: matrix: - libtiledb_version: ['2.29.2', '2.28.1'] + libtiledb_version: ['2.30.0', '2.29.2'] uses: ./.github/workflows/daily-test-build-numpy.yml with: libtiledb_version: ${{ matrix.libtiledb_version }} diff --git a/CMakeLists.txt b/CMakeLists.txt index b97768623a..a3a0d6028d 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.29.2 - RELLIST_HASH SHA256=fac1cb516793815de989bda43c6cedde453e464ed0fb273e3de786c43ffbb55f + VERSION 2.30.0 + RELLIST_HASH SHA256=39277332a23ab6158b20b6e080468b0128f8dfafbc2e727be3313b1b3deccf6b ) endif() find_package(TileDB REQUIRED) diff --git a/HISTORY.md b/HISTORY.md index 8e8ffda191..0740e4efd9 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,17 @@ +# Release 0.36.0 + +* TileDB-Py 0.36.0 includes TileDB Embedded [2.30.0](https://github.com/TileDB-Inc/TileDB/releases/tag/2.30.0) + +## Bug Fixes +* Fix double-offset bug in chunked sparse CSV row indices by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2279 + +## Improvements +* Expose overwrite parameter for saving a profile by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2277 +* Add label index support for aggregation by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2272 +* Expose the fill value setter at the Python layer by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2274 + +**Full Changelog**: https://github.com/TileDB-Inc/TileDB-Py/compare/0.35.2...0.36.0 + # Release 0.35.2 * TileDB-Py 0.35.2 includes TileDB Embedded [2.29.2](https://github.com/TileDB-Inc/TileDB/releases/tag/2.29.2)