Skip to content

Commit 7c2a90e

Browse files
Update to TileDB 2.7 and support all new features and changes
1 parent 82c0a05 commit 7c2a90e

23 files changed

+2564
-183
lines changed

README.md

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -18,37 +18,38 @@ For misc development details see [Development Notes](https://github.com/TileDB-I
1818

1919
The below table references which versions of TileDB-Java are compatible with which versions of the TileDB core library.
2020

21-
|TileDB-Java Version|TileDB Version|
22-
|-----------------|--------------|
23-
| 0.1.5 | <= 1.5.1 |
24-
| 0.1.6 | 1.6.0 |
25-
| 0.1.7 | 1.6.2 |
26-
| 0.1.8 | 1.6.2 |
27-
| 0.1.9 | 1.6.2 |
28-
| 0.2.0 | 1.7.0 |
29-
| 0.2.1 | 1.7.2 |
30-
| 0.2.2 | 1.7.2 |
31-
| 0.2.3 | 1.7.3 |
32-
| 0.2.4 | 1.7.7 |
33-
| 0.2.5 | 2.0.0 |
34-
| 0.2.6 | 2.0.1 |
35-
| 0.2.7 | 2.0.3 |
36-
| 0.2.8 | 2.0.5 |
37-
| 0.3.0 | 2.0.5 |
38-
| 0.3.1 | 2.0.7 |
39-
| 0.3.2 | 2.0.8 |
40-
| 0.3.3 | 2.0.8 |
41-
| 0.3.4 | 2.1.1 |
42-
| 0.3.5 | 2.1.2 |
43-
| 0.3.6 | 2.1.2 |
44-
| 0.3.7 | 2.2.2 |
45-
| 0.4.0 | 2.2.5 |
46-
| 0.4.1 | 2.2.5 |
47-
| 0.4.2 | 2.2.5 |
48-
| 0.4.3 | 2.2.5 |
49-
| 0.4.4 | 2.2.5 |
50-
| 0.5.X | 2.3.X |
51-
| 0.6.X | 2.4.X |
52-
| 0.7.X | 2.5.X |
53-
| 0.8.X | 2.6.X |
21+
| TileDB-Java Version | TileDB Version |
22+
|---------------------|----------------|
23+
| 0.1.5 | <= 1.5.1 |
24+
| 0.1.6 | 1.6.0 |
25+
| 0.1.7 | 1.6.2 |
26+
| 0.1.8 | 1.6.2 |
27+
| 0.1.9 | 1.6.2 |
28+
| 0.2.0 | 1.7.0 |
29+
| 0.2.1 | 1.7.2 |
30+
| 0.2.2 | 1.7.2 |
31+
| 0.2.3 | 1.7.3 |
32+
| 0.2.4 | 1.7.7 |
33+
| 0.2.5 | 2.0.0 |
34+
| 0.2.6 | 2.0.1 |
35+
| 0.2.7 | 2.0.3 |
36+
| 0.2.8 | 2.0.5 |
37+
| 0.3.0 | 2.0.5 |
38+
| 0.3.1 | 2.0.7 |
39+
| 0.3.2 | 2.0.8 |
40+
| 0.3.3 | 2.0.8 |
41+
| 0.3.4 | 2.1.1 |
42+
| 0.3.5 | 2.1.2 |
43+
| 0.3.6 | 2.1.2 |
44+
| 0.3.7 | 2.2.2 |
45+
| 0.4.0 | 2.2.5 |
46+
| 0.4.1 | 2.2.5 |
47+
| 0.4.2 | 2.2.5 |
48+
| 0.4.3 | 2.2.5 |
49+
| 0.4.4 | 2.2.5 |
50+
| 0.5.X | 2.3.X |
51+
| 0.6.X | 2.4.X |
52+
| 0.7.X | 2.5.X |
53+
| 0.8.X | 2.6.X |
54+
| 0.9.X | 2.7.X |
5455

cmake/Modules/FindTileDB_EP.cmake

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ if (NOT TILEDB_FOUND)
4848
# Try to download prebuilt artifacts unless the user specifies to build from source
4949
if(DOWNLOAD_TILEDB_PREBUILT)
5050
if (WIN32) # Windows
51-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.6.3/tiledb-windows-x86_64-2.6.3-534ca7c.zip")
52-
SET(DOWNLOAD_SHA1 "bdfb3841b3c85d4fb1ee64f74d2d54eb39e1a3d5")
51+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.7.0/tiledb-windows-x86_64-2.7.0-4f39c6c.zip")
52+
SET(DOWNLOAD_SHA1 "b441e0684a73dbdd3b55d2448e4b32a03bd4750f")
5353
elseif(APPLE) # macOS
54-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.6.3/tiledb-macos-x86_64-2.6.3-534ca7c.tar.gz")
55-
SET(DOWNLOAD_SHA1 "8df5477b443be6f4442be4f203052ad9740dfabc")
54+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.7.0/tiledb-macos-x86_64-2.7.0-4f39c6c.tar.gz")
55+
SET(DOWNLOAD_SHA1 "f5b7a6ac44e0aed2d2689b9b5f7d51c506e9a9e1")
5656
else() # Linux
57-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.6.3/tiledb-linux-x86_64-2.6.3-534ca7c.tar.gz")
58-
SET(DOWNLOAD_SHA1 "0ce53f609879b1d906bde96785689029212cd2f4")
57+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.7.0/tiledb-linux-x86_64-2.7.0-4f39c6c.tar.gz")
58+
SET(DOWNLOAD_SHA1 "9fa2c0607ca479fbb9f506e466cd60ad0189a6f6")
5959
endif()
6060

6161
ExternalProject_Add(ep_tiledb

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TILEDB_GIT_REPOSITORY=https://github.com/TileDB-Inc/TileDB
2-
TILEDB_GIT_TAG=2.6.3
2+
TILEDB_GIT_TAG=2.7.0
33
TILEDB_VERBOSE=ON
44
TILEDB_S3=ON
55
TILEDB_AZURE=OFF

0 commit comments

Comments
 (0)