File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 workflow_dispatch :
88
99jobs :
10- ci1 :
10+ daily-test-build :
11+ name : Daily Test Build (libtiledb ${{ matrix.libtiledb_version }})
12+ strategy :
13+ matrix :
14+ libtiledb_version : ['2.29.1', '2.28.1']
1115 uses : ./.github/workflows/daily-test-build.yml
1216 with :
13- libtiledb_version : ' 2.29.0 '
17+ libtiledb_version : ${{ matrix.libtiledb_version }}
1418
15- ci2 :
16- uses : ./.github/workflows/daily-test-build.yml
17- with :
18- libtiledb_version : ' 2.28.1'
19-
20- ci3 :
21- uses : ./.github/workflows/daily-test-build-numpy.yml
22- with :
23- libtiledb_version : ' 2.29.0'
24-
25- ci4 :
19+ daily-test-build-numpy :
20+ name : Daily Test Build NumPy (libtiledb ${{ matrix.libtiledb_version }})
21+ strategy :
22+ matrix :
23+ libtiledb_version : ['2.29.1', '2.28.1']
2624 uses : ./.github/workflows/daily-test-build-numpy.yml
2725 with :
28- libtiledb_version : ' 2.28.1 '
26+ libtiledb_version : ${{ matrix.libtiledb_version }}
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ if (NOT TileDB_FOUND)
4646 message (STATUS "Downloading TileDB default version ..." )
4747 # Download latest release
4848 fetch_prebuilt_tiledb (
49- VERSION 2.29.0
50- RELLIST_HASH SHA256=dcd46ae9fe9fee00bfd9b92f83606b73135c90df46e3246603d06074e28c7e99
49+ VERSION 2.29.1
50+ RELLIST_HASH SHA256=fb78a3e36570b4b4ca603a1752979de36ab1fe0904bc1ec5236c03ab2b34c8c1
5151 )
5252 endif ()
5353 find_package (TileDB REQUIRED )
Original file line number Diff line number Diff line change 1+ # Release 0.35.1
2+
3+ * TileDB-Py 0.35.1 includes TileDB Embedded [ 2.29.1] ( https://github.com/TileDB-Inc/TileDB/releases/tag/2.29.1 )
4+
5+ ## Bug Fixes
6+ * Prevent ` None ` from being converted to ` "None" ` in ` Config.set ` by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2258
7+ * Initialize of ` uint32_t ` to prevent OS-dependent undefined behavior by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2248
8+
9+ ## Improvements
10+ * Skip cloud tests if secret env vars are empty strings by @jdblischak in https://github.com/TileDB-Inc/TileDB-Py/pull/2257
11+ * Add support for fixed-size blob attributes by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2252
12+ * Update macOS runners to macOS 15 and macOS 26 by @nickvigilante in https://github.com/TileDB-Inc/TileDB-Py/pull/2253
13+ * Expose the ` type ` argument for the ` Group.add ` method by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2254
14+ * Update ` .from_pandas() ` docstrings to show False as default value for sparse by @nickvigilante in https://github.com/TileDB-Inc/TileDB-Py/pull/2250
15+
16+ ## Build system changes
17+ * Hotfix for env var pass @ktsitsi in https://github.com/TileDB-Inc/TileDB-Py/pull/2255
18+ * Add support for pybind11 3.0 by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2249
19+
120# Release 0.35.0
221
322* TileDB-Py 0.35.0 includes TileDB Embedded [ 2.29.0] ( https://github.com/TileDB-Inc/TileDB/releases/tag/2.29.0 )
You can’t perform that action at this time.
0 commit comments