Skip to content

Commit e58600c

Browse files
authored
Release 0.23.4 Against 2.17.4 (#1861)
1 parent 1b63921 commit e58600c

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

HISTORY.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
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)
29

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)
315
* 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)
416

5-
# Release 0.23.2
17+
# Release 0.23.3
618

719
## Bug Fixes
820

misc/azure-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ stages:
66
LIBTILEDB_VERSION: dev
77
LIBTILEDB_SHA: dev
88
${{ else }}:
9-
TILEDBPY_VERSION: 0.23.3
9+
TILEDBPY_VERSION: 0.23.4
1010
# 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
1313
LIBTILEDB_REPO: https://github.com/TileDB-Inc/TileDB
1414
TILEDB_SRC: "$(Build.Repository.Localpath)/tiledb_src"
1515
TILEDB_BUILD: "$(Build.Repository.Localpath)/tiledb_build"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# - this is for builds-from-source
2525
# - release builds are controlled by `misc/azure-release.yml`
2626
# - this should be set to the current core release, not `dev`
27-
TILEDB_VERSION = "2.17.3"
27+
TILEDB_VERSION = "2.17.4"
2828

2929
# allow overriding w/ environment variable
3030
TILEDB_VERSION = os.environ.get("TILEDB_VERSION") or TILEDB_VERSION

0 commit comments

Comments
 (0)