Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 34 additions & 33 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,38 @@ For misc development details see [Development Notes](https://github.com/TileDB-I

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

|TileDB-Java Version|TileDB Version|
|-----------------|--------------|
| 0.1.5 | <= 1.5.1 |
| 0.1.6 | 1.6.0 |
| 0.1.7 | 1.6.2 |
| 0.1.8 | 1.6.2 |
| 0.1.9 | 1.6.2 |
| 0.2.0 | 1.7.0 |
| 0.2.1 | 1.7.2 |
| 0.2.2 | 1.7.2 |
| 0.2.3 | 1.7.3 |
| 0.2.4 | 1.7.7 |
| 0.2.5 | 2.0.0 |
| 0.2.6 | 2.0.1 |
| 0.2.7 | 2.0.3 |
| 0.2.8 | 2.0.5 |
| 0.3.0 | 2.0.5 |
| 0.3.1 | 2.0.7 |
| 0.3.2 | 2.0.8 |
| 0.3.3 | 2.0.8 |
| 0.3.4 | 2.1.1 |
| 0.3.5 | 2.1.2 |
| 0.3.6 | 2.1.2 |
| 0.3.7 | 2.2.2 |
| 0.4.0 | 2.2.5 |
| 0.4.1 | 2.2.5 |
| 0.4.2 | 2.2.5 |
| 0.4.3 | 2.2.5 |
| 0.4.4 | 2.2.5 |
| 0.5.X | 2.3.X |
| 0.6.X | 2.4.X |
| 0.7.X | 2.5.X |
| 0.8.X | 2.6.X |
| TileDB-Java Version | TileDB Version |
|---------------------|----------------|
| 0.1.5 | <= 1.5.1 |
| 0.1.6 | 1.6.0 |
| 0.1.7 | 1.6.2 |
| 0.1.8 | 1.6.2 |
| 0.1.9 | 1.6.2 |
| 0.2.0 | 1.7.0 |
| 0.2.1 | 1.7.2 |
| 0.2.2 | 1.7.2 |
| 0.2.3 | 1.7.3 |
| 0.2.4 | 1.7.7 |
| 0.2.5 | 2.0.0 |
| 0.2.6 | 2.0.1 |
| 0.2.7 | 2.0.3 |
| 0.2.8 | 2.0.5 |
| 0.3.0 | 2.0.5 |
| 0.3.1 | 2.0.7 |
| 0.3.2 | 2.0.8 |
| 0.3.3 | 2.0.8 |
| 0.3.4 | 2.1.1 |
| 0.3.5 | 2.1.2 |
| 0.3.6 | 2.1.2 |
| 0.3.7 | 2.2.2 |
| 0.4.0 | 2.2.5 |
| 0.4.1 | 2.2.5 |
| 0.4.2 | 2.2.5 |
| 0.4.3 | 2.2.5 |
| 0.4.4 | 2.2.5 |
| 0.5.X | 2.3.X |
| 0.6.X | 2.4.X |
| 0.7.X | 2.5.X |
| 0.8.X | 2.6.X |
| 0.9.X | 2.7.X |

12 changes: 6 additions & 6 deletions cmake/Modules/FindTileDB_EP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ if (NOT TILEDB_FOUND)
# Try to download prebuilt artifacts unless the user specifies to build from source
if(DOWNLOAD_TILEDB_PREBUILT)
if (WIN32) # Windows
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.6.3/tiledb-windows-x86_64-2.6.3-534ca7c.zip")
SET(DOWNLOAD_SHA1 "bdfb3841b3c85d4fb1ee64f74d2d54eb39e1a3d5")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.7.1/tiledb-windows-x86_64-2.7.1-a942c71.zip")
SET(DOWNLOAD_SHA1 "fd3cd7c72a8c7056445b402622264ca3c3da89cc")
elseif(APPLE) # macOS
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.6.3/tiledb-macos-x86_64-2.6.3-534ca7c.tar.gz")
SET(DOWNLOAD_SHA1 "8df5477b443be6f4442be4f203052ad9740dfabc")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.7.1/tiledb-macos-x86_64-2.7.1-a942c71.tar.gz")
SET(DOWNLOAD_SHA1 "07074baf703440c0a54d2eb41eb1f59c53a519f0")
else() # Linux
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.6.3/tiledb-linux-x86_64-2.6.3-534ca7c.tar.gz")
SET(DOWNLOAD_SHA1 "0ce53f609879b1d906bde96785689029212cd2f4")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.7.1/tiledb-linux-x86_64-2.7.1-a942c71.tar.gz")
SET(DOWNLOAD_SHA1 "d61b01fdd6944f5ae3816426cf66350c54a2d737")
endif()

ExternalProject_Add(ep_tiledb
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TILEDB_GIT_REPOSITORY=https://github.com/TileDB-Inc/TileDB
TILEDB_GIT_TAG=2.6.3
TILEDB_GIT_TAG=2.7.1
TILEDB_VERBOSE=ON
TILEDB_S3=ON
TILEDB_AZURE=OFF
Expand Down
Loading