Skip to content

Commit 648546c

Browse files
committed
Release 0.16.0 Against TileDB 2.10.1
1 parent 8d05fdd commit 648546c

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

HISTORY.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# TileDB-Py 0.16.1 Release Notes
2+
3+
## TileDB Embedded updates:
4+
* TileDB-Py 0.16.1 includes TileDB Embedded [TileDB 2.10.1](https://github.com/TileDB-Inc/TileDB/releases/tag/2.10.1)
5+
16
# TileDB-Py 0.16.0 Release Notes
27

38
## TileDB Embedded updates:
@@ -102,8 +107,8 @@
102107

103108
## Bug Fixes
104109
* Correct `Group.__repr__` to call correct `_dump` function [#1040](https://github.com/TileDB-Inc/TileDB-Py/pull/1040)
105-
* Check type of `ctx` in `from_pandas` and `from_csv` [#1042](https://github.com/TileDB-Inc/TileDB-Py/pull/1042)
106-
* Only allow use of `.df` indexer for `.query(return_arrow=True)`; error out with meaningful error message otherwise [#1045](https://github.com/TileDB-Inc/TileDB-Py/pull/1045)
110+
* Check type of `ctx` in `from_pandas` and `from_csv` [#1042](https://github.com/TileDB-Inc/TileDB-Py/pull/1042)
111+
* Only allow use of `.df` indexer for `.query(return_arrow=True)`; error out with meaningful error message otherwise [#1045](https://github.com/TileDB-Inc/TileDB-Py/pull/1045)
107112

108113
# TileDB-Py 0.14.1 Release Notes
109114

misc/azure-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ stages:
66
LIBTILEDB_VERSION: dev
77
LIBTILEDB_SHA: dev
88
${{ else }}:
9-
TILEDBPY_VERSION: 0.16.0
10-
LIBTILEDB_VERSION: 2.10.0
11-
LIBTILEDB_SHA: 0b54e51a08e1a4208e73cdd26aa2e41f67a6840f
9+
TILEDBPY_VERSION: 0.16.1
10+
LIBTILEDB_VERSION: 2.10.1
11+
LIBTILEDB_SHA: 6535d4cfdd6cc520b52a760b4185a26aa14c3354
1212
LIBTILEDB_REPO: https://github.com/TileDB-Inc/TileDB
1313
TILEDB_SRC: "$(Build.Repository.Localpath)/tiledb_src"
1414
TILEDB_BUILD: "$(Build.Repository.Localpath)/tiledb_build"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
### DO NOT USE ON CI
2424

2525
# Target branch: Note that this should be set to the current core release, not `dev`
26-
TILEDB_VERSION = "2.10.0"
26+
TILEDB_VERSION = (
27+
"6535d4cfdd6cc520b52a760b4185a26aa14c3354" # Update after 2.10.1 tagged
28+
)
2729
# allow overriding w/ environment variable
2830
TILEDB_VERSION = os.environ.get("TILEDB_VERSION") or TILEDB_VERSION
2931

0 commit comments

Comments
 (0)