Skip to content

update to TileDB-2.15.2 #291

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2023
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group 'io.tiledb'
version '0.17.3-SNAPSHOT'
version '0.17.4-SNAPSHOT'

repositories {
jcenter()
Expand Down
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.15.1/tiledb-windows-x86_64-2.15.1-432d4c2.zip")
SET(DOWNLOAD_SHA1 "7235a3bc0b5675ed83762a4290d99c6ff9db285f")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.15.2/tiledb-windows-x86_64-2.15.2-90f30eb.zip")
SET(DOWNLOAD_SHA1 "1adc1ffa3c6c0f637bcb68d3cd278b0bee597b9c")
elseif(APPLE) # macOS
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.15.1/tiledb-macos-x86_64-2.15.1-432d4c2.tar.gz")
SET(DOWNLOAD_SHA1 "f5986f5a85912147e2b839e0968963df6c540688")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.15.2/tiledb-macos-x86_64-2.15.2-90f30eb.tar.gz")
SET(DOWNLOAD_SHA1 "616b9ab508d1233d3bc3d6a2a7b1c42c8098f38a")
else() # Linux
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.15.1/tiledb-linux-x86_64-2.15.1-432d4c2.tar.gz")
SET(DOWNLOAD_SHA1 "9b705af26007b193800f0382c343d421a8b59003")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.15.2/tiledb-linux-x86_64-2.15.2-90f30eb.tar.gz")
SET(DOWNLOAD_SHA1 "33ae11d507dc7bec82fbdfbd8e2b2e13cff16b89")
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.15.1
TILEDB_GIT_TAG=2.15.2
TILEDB_VERBOSE=ON
TILEDB_S3=ON
TILEDB_AZURE=OFF
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/tiledb/java/api/VersionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public void testVersion() {
System.out.println(version);
Assert.assertTrue(version.getMajor() >= 2);
Assert.assertTrue(version.getMinor() >= 15);
Assert.assertTrue(version.getRevision() >= 1);
Assert.assertTrue(version.getRevision() >= 2);
}
}