Skip to content

Commit 085eb8c

Browse files
authored
Merge pull request #520 from TileDB-Inc/adamwenocur/sc-27299/release
Upgrade to Embedded 2.15.1
2 parents 47709eb + 0282440 commit 085eb8c

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

apis/java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group 'io.tiledb'
10-
version '0.23.0'
10+
version '0.23.1'
1111

1212
sourceCompatibility = 1.8
1313
targetCompatibility = 1.8

apis/spark/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group 'io.tiledb'
10-
version '0.23.0'
10+
version '0.23.1'
1111

1212
sourceCompatibility = 1.8
1313
targetCompatibility = 1.8

apis/spark3/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group 'io.tiledb'
10-
version '0.23.0'
10+
version '0.23.1'
1111

1212
sourceCompatibility = 1.8
1313
targetCompatibility = 1.8

libtiledbvcf/cmake/Modules/FindTileDB_EP.cmake

+10-10
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,20 @@ else()
5252
# Try to download prebuilt artifacts unless the user specifies to build from source
5353
if(DOWNLOAD_TILEDB_PREBUILT)
5454
if (WIN32) # Windows
55-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.0/tiledb-windows-x86_64-2.15.0-1fb59c4.zip")
56-
SET(DOWNLOAD_SHA1 "aeea7b08acffd2e907956ad31b3230f329c8e2f2")
55+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.1/tiledb-windows-x86_64-2.15.1-432d4c2.zip")
56+
SET(DOWNLOAD_SHA1 "7235a3bc0b5675ed83762a4290d99c6ff9db285f")
5757
elseif(APPLE) # OSX
5858

5959
if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
60-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.0/tiledb-macos-x86_64-2.15.0-1fb59c4.tar.gz")
61-
SET(DOWNLOAD_SHA1 "e0a6cb63a87d07223ea1fe1e85add1157485039a")
60+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.1/tiledb-macos-x86_64-2.15.1-432d4c2.tar.gz")
61+
SET(DOWNLOAD_SHA1 "f5986f5a85912147e2b839e0968963df6c540688")
6262
elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
63-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.0/tiledb-macos-arm64-2.15.0-1fb59c4.tar.gz")
64-
SET(DOWNLOAD_SHA1 "9cfdc7c783a0e9dc660d2da79c459c4792c42192")
63+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.1/tiledb-macos-arm64-2.15.1-432d4c2.tar.gz")
64+
SET(DOWNLOAD_SHA1 "6abb30f9dd7371d5a06a273008179bd57d691e36")
6565
endif()
6666
else() # Linux
67-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.0/tiledb-linux-x86_64-2.15.0-1fb59c4.tar.gz")
68-
SET(DOWNLOAD_SHA1 "d848984df361bf1dff1ace09cb7ac1c516c6cb87")
67+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.15.1/tiledb-linux-x86_64-2.15.1-432d4c2.tar.gz")
68+
SET(DOWNLOAD_SHA1 "9b705af26007b193800f0382c343d421a8b59003")
6969
endif()
7070

7171
ExternalProject_Add(ep_tiledb
@@ -87,8 +87,8 @@ else()
8787
else() # Build from source
8888
ExternalProject_Add(ep_tiledb
8989
PREFIX "externals"
90-
URL "https://github.com/TileDB-Inc/TileDB/archive/2.15.0.zip"
91-
URL_HASH SHA1=b281debe6799c635ab8c2984496ebe1f473a56d9
90+
URL "https://github.com/TileDB-Inc/TileDB/archive/2.15.1.zip"
91+
URL_HASH SHA1=8bb70f7534297b184d23b216b1097fdde40829df
9292
DOWNLOAD_NAME "tiledb.zip"
9393
CMAKE_ARGS
9494
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}

0 commit comments

Comments
 (0)