Skip to content

Commit f2c984b

Browse files
Update to TileDB-2.9.3-rc0
1 parent f92c8e6 commit f2c984b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
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.9.0/tiledb-windows-x86_64-2.9.0-e4aa2b5.zip")
52-
SET(DOWNLOAD_SHA1 "74f5aa9f57880d1149988ed0ca6d2f6201db2261")
51+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.3-rc0/tiledb-windows-x86_64-2.9.3-rc0-9f4129b.zip")
52+
SET(DOWNLOAD_SHA1 "55e25234756058b46062e52d75879e51f00e471d")
5353
elseif(APPLE) # macOS
54-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.0/tiledb-macos-x86_64-2.9.0-e4aa2b5.tar.gz")
55-
SET(DOWNLOAD_SHA1 "1398126dc26a7cda60cc4f5eaed0b241eb44f260")
54+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.3-rc0/tiledb-macos-x86_64-2.9.3-rc0-9f4129b.tar.gz")
55+
SET(DOWNLOAD_SHA1 "784ed4d17743be6de9ce4c39cc542094f0a65177")
5656
else() # Linux
57-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.0/tiledb-linux-x86_64-2.9.0-e4aa2b5.tar.gz")
58-
SET(DOWNLOAD_SHA1 "d62cb708fd5d1b0d5a9eb4c7fd2ad6af6dac0b0f")
57+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.3-rc0/tiledb-linux-x86_64-2.9.3-rc0-9f4129b.tar.gz")
58+
SET(DOWNLOAD_SHA1 "50df5ca97cac19dc9c98fdbe49418bbada1ad754")
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.9.0
2+
TILEDB_GIT_TAG=2.9.3-rc0
33
TILEDB_VERBOSE=ON
44
TILEDB_S3=ON
55
TILEDB_AZURE=OFF

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void testVersion() {
3434
Version version = new Version();
3535
System.out.println(version);
3636
Assert.assertTrue(version.getMajor() >= 2);
37-
Assert.assertTrue(version.getMinor() >= 6);
38-
Assert.assertTrue(version.getRevision() >= 0);
37+
Assert.assertTrue(version.getMinor() >= 9);
38+
Assert.assertTrue(version.getRevision() >= 3);
3939
}
4040
}

0 commit comments

Comments
 (0)