diff --git a/build.gradle b/build.gradle index fa8d8e03..570dc460 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { } group 'io.tiledb' -version '0.20.0-SNAPSHOT' +version '0.20.1-SNAPSHOT' repositories { jcenter() diff --git a/cmake/Modules/FindTileDB_EP.cmake b/cmake/Modules/FindTileDB_EP.cmake index 601d5c39..d81d32ae 100644 --- a/cmake/Modules/FindTileDB_EP.cmake +++ b/cmake/Modules/FindTileDB_EP.cmake @@ -48,29 +48,29 @@ 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.18.1/tiledb-windows-x86_64-2.18.1-fe4544c.zip") - SET(DOWNLOAD_SHA1 "fa38ad3945f0c6add08616c53def17fbfb26a624") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.2/tiledb-windows-x86_64-2.18.2-9ae6e1a.zip") + SET(DOWNLOAD_SHA1 "c440403fde701e5014a7ffa046d38bb49b141e55") elseif(APPLE) # macOS if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)") message(STATUS "Building for intel mac") - SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.1/tiledb-macos-x86_64-2.18.1-fe4544c.tar.gz") - SET(DOWNLOAD_SHA1 "5a6e036d6fcd0617798335b3c3188045215b18a2") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.2/tiledb-macos-x86_64-2.18.2-9ae6e1a.tar.gz") + SET(DOWNLOAD_SHA1 "6ba986407b2d0e25fb5df19d08ed22fefeac1c2a") elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm") message(STATUS "Building for apple silicon mac") - SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.1/tiledb-macos-arm64-2.18.1-fe4544c.tar.gz") - SET(DOWNLOAD_SHA1 "3b38518050dd710c142a54a7ff663c772628d93f") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.2/tiledb-macos-arm64-2.18.2-9ae6e1a.tar.gz") + SET(DOWNLOAD_SHA1 "4395a283db57844a944f02dab5bd0f0001eb7e30") endif() else() # Linux if (USE_AVX2) message(STATUS "Using Linux binaries with AVX2") - SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.1/tiledb-linux-x86_64-2.18.1-fe4544c.tar.gz") - SET(DOWNLOAD_SHA1 "48c288c73a5e1d7ab66bac9894218173e428ba9e") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.2/tiledb-linux-x86_64-2.18.2-9ae6e1a.tar.gz") + SET(DOWNLOAD_SHA1 "6386504a58d52330f41fa688a2b259b67824e2c8") else() message(STATUS "Using Linux binaries without AVX2") - SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.1/tiledb-linux-x86_64-noavx2-2.18.1-fe4544c.tar.gz") - SET(DOWNLOAD_SHA1 "482fc2a5488da747e2cf7c07eba3b04a3eb5cc23") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.2/tiledb-linux-x86_64-noavx2-2.18.2-9ae6e1a.tar.gz") + SET(DOWNLOAD_SHA1 "96d558aae525c4a665a0b1e9cdcce75a97e3d966") endif() endif() diff --git a/gradle.properties b/gradle.properties index 2ca062a7..1b4c0762 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ TILEDB_GIT_REPOSITORY=https://github.com/TileDB-Inc/TileDB -TILEDB_GIT_TAG=2.18.1 +TILEDB_GIT_TAG=2.18.2 TILEDB_VERBOSE=ON TILEDB_S3=ON TILEDB_AZURE=OFF diff --git a/src/test/java/io/tiledb/java/api/VersionTest.java b/src/test/java/io/tiledb/java/api/VersionTest.java index f0b346fd..1ea177f6 100644 --- a/src/test/java/io/tiledb/java/api/VersionTest.java +++ b/src/test/java/io/tiledb/java/api/VersionTest.java @@ -35,6 +35,6 @@ public void testVersion() { System.out.println(version); Assert.assertTrue(version.getMajor() == 2); Assert.assertTrue(version.getMinor() == 18); - Assert.assertTrue(version.getRevision() == 1); + Assert.assertTrue(version.getRevision() == 2); } }