File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
# Release 0.24.0
8
8
9
+ * TileDB-Py 0.25.0 includes TileDB Embedded [ 2.19.0] ( https://github.com/TileDB-Inc/TileDB/releases/tag/2.19.0 )
10
+
11
+ ## Improvements
12
+
13
+ * Fix fill value for complex attributes [ 1872] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1872 )
14
+ * Update current-release nightly target [ 1873] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1873 )
15
+ * Add full check of attribute properties in __ eq__ method [ 1874] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1874 )
16
+ * Add all array properties to ArraySchema.__ eq__ [ 1875] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1875 )
17
+ * Error out if query condition given empty set [ 1877] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1877 )
18
+
19
+ # Release 0.24.0
20
+
9
21
* TileDB-Py 0.24.0 includes TileDB Embedded [ 2.18.2] ( https://github.com/TileDB-Inc/TileDB/releases/tag/2.18.2 )
10
22
11
23
## Improvements
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ stages:
6
6
LIBTILEDB_VERSION : dev
7
7
LIBTILEDB_SHA : dev
8
8
${{ else }} :
9
- TILEDBPY_VERSION : 0.24 .0
9
+ TILEDBPY_VERSION : 0.25 .0
10
10
# NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA
11
- LIBTILEDB_VERSION : 2.18.2
12
- LIBTILEDB_SHA : 9ae6e1a855cbbeac1e51cac2e02bbc4e20195214
11
+ LIBTILEDB_VERSION : 2.19.0
12
+ LIBTILEDB_SHA : fa30a88abc5504ed8387e25937744afcd3802232
13
13
LIBTILEDB_REPO : https://github.com/TileDB-Inc/TileDB
14
14
TILEDB_SRC : " $(Build.Repository.Localpath)/tiledb_src"
15
15
TILEDB_BUILD : " $(Build.Repository.Localpath)/tiledb_build"
Original file line number Diff line number Diff line change 20
20
# - this is for builds-from-source
21
21
# - release builds are controlled by `misc/azure-release.yml`
22
22
# - this should be set to the current core release, not `dev`
23
- TILEDB_VERSION = "2.18.2 "
23
+ TILEDB_VERSION = "2.19.0 "
24
24
25
25
# allow overriding w/ environment variable
26
26
TILEDB_VERSION = os .environ .get ("TILEDB_VERSION" ) or TILEDB_VERSION
You can’t perform that action at this time.
0 commit comments