Skip to content

Commit 228a027

Browse files
authored
Update HISTORY for TileDB-Py 0.29.0 against TileDB 2.23.0 (#1961)
1 parent 4cb1d37 commit 228a027

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

HISTORY.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# Release 0.29.0
2+
3+
* TileDB-Py 0.29.0 includes TileDB Embedded [2.23.0](https://github.com/TileDB-Inc/TileDB/releases/tag/2.23.0)
4+
5+
## Improvements
6+
7+
* Add wrapping for ls_recursive by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1933
8+
* Migrate away from deprecated TileDB C++ APIs by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1958
9+
* Pybind11 Config should honor prefix for iter by @Shelnutt2 in https://github.com/TileDB-Inc/TileDB-Py/pull/1962
10+
* Fix test skipping by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1957
11+
* Make timestamp overrides optional in tests and add faketime test by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1953
12+
* Wrap tiledb_array_consolidate_fragments from pybind11 by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1948
13+
14+
## Build system changes
15+
16+
* Enable python 3.12 by @dudoslav in https://github.com/TileDB-Inc/TileDB-Py/pull/1959
17+
* Add .vscode to .gitignore by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1952
18+
119
# Release 0.28.0
220

321
## TileDB Embedded updates

misc/azure-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ stages:
66
LIBTILEDB_VERSION: dev
77
LIBTILEDB_SHA: dev
88
${{ else }}:
9-
TILEDBPY_VERSION: 0.28.0
9+
TILEDBPY_VERSION: 0.29.0
1010
# NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA
11-
LIBTILEDB_VERSION: "2.22.0"
11+
LIBTILEDB_VERSION: "2.23.0"
1212
# NOTE: *must* update both LIBTILEDB_VERSION and LIBTILEDB_SHA
13-
LIBTILEDB_SHA: 52e981ee9ce92eaceaf13a79a5a95820eca0673b
13+
LIBTILEDB_SHA: 152093bed1f25f219fc91f31456c26b04a67dd63
1414
LIBTILEDB_REPO: https://github.com/TileDB-Inc/TileDB
1515
TILEDB_SRC: "$(Build.Repository.Localpath)/tiledb_src"
1616
TILEDB_BUILD: "$(Build.Repository.Localpath)/tiledb_build"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[build-system]
2-
requires = ["setuptools>=42", "wheel", "pybind11", "Cython"]
2+
requires = ["setuptools>=64", "wheel", "pybind11", "Cython"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6+
requires-python = ">=3.8"
67
name = "tiledb"
78
description = "Pythonic interface to the TileDB array storage manager"
89
readme = "README.md"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# - this is for builds-from-source
2121
# - release builds are controlled by `misc/azure-release.yml`
2222
# - this should be set to the current core release, not `dev`
23-
TILEDB_VERSION = "2.22.0"
23+
TILEDB_VERSION = "2.23.0"
2424

2525
# allow overriding w/ environment variable
2626
TILEDB_VERSION = (

0 commit comments

Comments
 (0)