From ac977b91697562da7ef640bff4d59529636babf2 Mon Sep 17 00:00:00 2001 From: dimitrisstaratzis Date: Mon, 12 Sep 2022 19:10:15 +0300 Subject: [PATCH 1/2] update to TileDB-2.11.2 --- cmake/Modules/FindTileDB_EP.cmake | 12 ++++++------ gradle.properties | 2 +- src/test/java/io/tiledb/java/api/VersionTest.java | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cmake/Modules/FindTileDB_EP.cmake b/cmake/Modules/FindTileDB_EP.cmake index f70b3a29..ee8249a4 100644 --- a/cmake/Modules/FindTileDB_EP.cmake +++ b/cmake/Modules/FindTileDB_EP.cmake @@ -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.11.1/tiledb-windows-x86_64-2.11.1-15a1161.zip") - SET(DOWNLOAD_SHA1 "f88420f4269aaac69a1dfb53e20f4848c407fa3f") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.2/tiledb-windows-x86_64-2.11.2-6ad6f76.zip") + SET(DOWNLOAD_SHA1 "2a8a35782e73dce77c539c75db9a5736fc796ca8") elseif(APPLE) # macOS - SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.1/tiledb-macos-x86_64-2.11.1-15a1161.tar.gz") - SET(DOWNLOAD_SHA1 "95439b79e6f27cd9441403429161b8fc962e03ea") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.2/tiledb-macos-x86_64-2.11.2-6ad6f76.tar.gz") + SET(DOWNLOAD_SHA1 "55f4e4b478f44ce84abe467fe8ed3d7fffc7a1a0") else() # Linux - SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.1/tiledb-linux-x86_64-2.11.1-15a1161.tar.gz") - SET(DOWNLOAD_SHA1 "909a579420abcd490c54b486f10a1791499f30d8") + SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.2/tiledb-linux-x86_64-2.11.2-6ad6f76.tar.gz") + SET(DOWNLOAD_SHA1 "e6840cccd280b5c57695c359033d56df38fb3f1b") endif() ExternalProject_Add(ep_tiledb diff --git a/gradle.properties b/gradle.properties index 11a99535..df54befd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ TILEDB_GIT_REPOSITORY=https://github.com/TileDB-Inc/TileDB -TILEDB_GIT_TAG=2.11.1 +TILEDB_GIT_TAG=2.11.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 d4b8fefa..fb5bf229 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() >= 11); - Assert.assertTrue(version.getRevision() >= 1); + Assert.assertTrue(version.getRevision() >= 2); } } From c29c2d6988713c2dd194b3153677c37c8c9ae6c4 Mon Sep 17 00:00:00 2001 From: dimitrisstaratzis Date: Mon, 12 Sep 2022 19:11:17 +0300 Subject: [PATCH 2/2] update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e25b72f0..92e709cb 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { } group 'io.tiledb' -version '0.13.2-SNAPSHOT' +version '0.13.3-SNAPSHOT' repositories { jcenter()