File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
- # Release 0.23.3
1
+ # Release 0.23.4
2
+
3
+ * TileDB-Py 0.23.4 includes TileDB Embedded [ 2.17.4] ( https://github.com/TileDB-Inc/TileDB/releases/tag/2.17.4 )
4
+
5
+ ## Improvements
6
+
7
+ * Add ` COMPRESSION_REINTERPRET_DATATYPE ` to allowed ` FilterOption ` [ #1855 ] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1855 )
8
+ * Add ` filter_name ` to ` Filter ` class [ #1856 ] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1856 )
2
9
10
+ ## Bug Fixes
11
+
12
+ * Do not use ` dtype.kind ` in enumeration extend type checking [ #1853 ] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1853 )
13
+ * Empty enumerations should be casted to the dtype of the enumeration [ #1854 ] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1854 )
14
+ * Correct writing nullable string attributes and all nulled data [ #1848 ] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1848 )
3
15
* Pandas 2+ fix: use ` pa.schema.with_metadata ` , replacing passing metadata to ` pa.schema ` constructor [ #1858 ] ( https://github.com/TileDB-Inc/TileDB-Py/pull/1858 )
4
16
5
- # Release 0.23.2
17
+ # Release 0.23.3
6
18
7
19
## Bug Fixes
8
20
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.23.3
9
+ TILEDBPY_VERSION : 0.23.4
10
10
# NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA
11
- LIBTILEDB_VERSION : 2.17.3
12
- LIBTILEDB_SHA : 0c2de5830bdce30cc0488053636eaa26129bffb0
11
+ LIBTILEDB_VERSION : 2.17.4
12
+ LIBTILEDB_SHA : a1f648ebef5e520f72e51a4f23d5b37921105d96
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 24
24
# - this is for builds-from-source
25
25
# - release builds are controlled by `misc/azure-release.yml`
26
26
# - this should be set to the current core release, not `dev`
27
- TILEDB_VERSION = "2.17.3 "
27
+ TILEDB_VERSION = "2.17.4 "
28
28
29
29
# allow overriding w/ environment variable
30
30
TILEDB_VERSION = os .environ .get ("TILEDB_VERSION" ) or TILEDB_VERSION
You can’t perform that action at this time.
0 commit comments