Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/daily-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
14 changes: 14 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
Loading