Skip to content

Commit 4864c38

Browse files
update to tiledb-2.13.2
1 parent 02fc455 commit 4864c38

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

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.13.1/tiledb-windows-x86_64-2.13.1-21c75f9.zip")
52-
SET(DOWNLOAD_SHA1 "cd6cd7936f0f8f83074bafb91f010ea526815e7d")
51+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.13.2/tiledb-windows-x86_64-2.13.2-b57dd74.zip")
52+
SET(DOWNLOAD_SHA1 "c0cad8958c0bb0a8a4319c22131be59dfebe54cf")
5353
elseif(APPLE) # macOS
54-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.13.1/tiledb-macos-x86_64-2.13.1-21c75f9.tar.gz")
55-
SET(DOWNLOAD_SHA1 "27986177b4e1254a0cd63f7cef37440c189b679c")
54+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.13.2/tiledb-macos-x86_64-2.13.2-b57dd74.tar.gz")
55+
SET(DOWNLOAD_SHA1 "57c994418e86cfcf0d64331de259515ebce969b2")
5656
else() # Linux
57-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.13.1/tiledb-linux-x86_64-2.13.1-21c75f9.tar.gz")
58-
SET(DOWNLOAD_SHA1 "563ddd7d10ded0beb832bb767c39be5c807eb34a")
57+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.13.2/tiledb-linux-x86_64-2.13.2-b57dd74.tar.gz")
58+
SET(DOWNLOAD_SHA1 "d61ddf2d6cdd4cd67888e1fc7b5694e8d109cbd9")
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.13.1
2+
TILEDB_GIT_TAG=2.13.2
33
TILEDB_VERBOSE=ON
44
TILEDB_S3=ON
55
TILEDB_AZURE=OFF

src/test/java/io/tiledb/java/api/VersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ public void testVersion() {
3535
System.out.println(version);
3636
Assert.assertTrue(version.getMajor() >= 2);
3737
Assert.assertTrue(version.getMinor() >= 13);
38-
Assert.assertTrue(version.getRevision() >= 1);
38+
Assert.assertTrue(version.getRevision() >= 2);
3939
}
4040
}

0 commit comments

Comments
 (0)