Skip to content

Commit

Permalink
Release 0.23.4 Against 2.17.4 (#1861)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenv authored Nov 3, 2023
1 parent 1b63921 commit e58600c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
16 changes: 14 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Release 0.23.3
# Release 0.23.4

* TileDB-Py 0.23.4 includes TileDB Embedded [2.17.4](https://github.com/TileDB-Inc/TileDB/releases/tag/2.17.4)

## Improvements

* Add `COMPRESSION_REINTERPRET_DATATYPE` to allowed `FilterOption` [#1855](https://github.com/TileDB-Inc/TileDB-Py/pull/1855)
* Add `filter_name` to `Filter` class [#1856](https://github.com/TileDB-Inc/TileDB-Py/pull/1856)

## Bug Fixes

* Do not use `dtype.kind` in enumeration extend type checking [#1853](https://github.com/TileDB-Inc/TileDB-Py/pull/1853)
* Empty enumerations should be casted to the dtype of the enumeration [#1854](https://github.com/TileDB-Inc/TileDB-Py/pull/1854)
* Correct writing nullable string attributes and all nulled data [#1848](https://github.com/TileDB-Inc/TileDB-Py/pull/1848)
* 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)

# Release 0.23.2
# Release 0.23.3

## Bug Fixes

Expand Down
6 changes: 3 additions & 3 deletions misc/azure-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ stages:
LIBTILEDB_VERSION: dev
LIBTILEDB_SHA: dev
${{ else }}:
TILEDBPY_VERSION: 0.23.3
TILEDBPY_VERSION: 0.23.4
# NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA
LIBTILEDB_VERSION: 2.17.3
LIBTILEDB_SHA: 0c2de5830bdce30cc0488053636eaa26129bffb0
LIBTILEDB_VERSION: 2.17.4
LIBTILEDB_SHA: a1f648ebef5e520f72e51a4f23d5b37921105d96
LIBTILEDB_REPO: https://github.com/TileDB-Inc/TileDB
TILEDB_SRC: "$(Build.Repository.Localpath)/tiledb_src"
TILEDB_BUILD: "$(Build.Repository.Localpath)/tiledb_build"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# - this is for builds-from-source
# - release builds are controlled by `misc/azure-release.yml`
# - this should be set to the current core release, not `dev`
TILEDB_VERSION = "2.17.3"
TILEDB_VERSION = "2.17.4"

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

0 comments on commit e58600c

Please sign in to comment.