Skip to content

Commit e83cd75

Browse files
authored
updates to TileDB 2.26.2 (#373)
1 parent 3407721 commit e83cd75

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group 'io.tiledb'
12-
version '0.28.1-SNAPSHOT'
12+
version '0.28.2-SNAPSHOT'
1313

1414
repositories {
1515
mavenCentral()

cmake/Modules/FindTileDB_EP.cmake

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,30 +48,30 @@ 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.26.1/tiledb-windows-x86_64-2.26.1-db1cee4.zip")
52-
SET(DOWNLOAD_SHA256 "c82f6175db770451358ef0a918c2e4921875de2e48c721aa02e729562c79ad2d")
51+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.2/tiledb-windows-x86_64-2.26.2-30fc114.zip")
52+
SET(DOWNLOAD_SHA256 "2af76fce2070f7e5a97171ebf29990de3c2b230970be60e8c061eaa18f52c853")
5353
elseif(APPLE) # macOS
5454

5555
if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
5656
message(STATUS "Building for intel mac")
5757

58-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-macos-x86_64-2.26.1-db1cee4.tar.gz")
59-
SET(DOWNLOAD_SHA256 "6a7a4017cdc5eb0a9adcc0cb1c8c1322ce2d166c684bf18c8a6f4c1aceb3cb74")
58+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.2/tiledb-macos-x86_64-2.26.2-30fc114.tar.gz")
59+
SET(DOWNLOAD_SHA256 "08ebb8a4c5e9b3625100489966f69db76b99c0f5640aa20eb0cded6414f39b33")
6060

6161
elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
6262
message(STATUS "Building for apple silicon mac")
63-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-macos-arm64-2.26.1-db1cee4.tar.gz")
64-
SET(DOWNLOAD_SHA256 "9aa78d2cfb5d97f07969641c79500a386a14a9def375fe2d64ba150440466963")
63+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.2/tiledb-macos-arm64-2.26.2-30fc114.tar.gz")
64+
SET(DOWNLOAD_SHA256 "12e5355c48bf91059a15554de2ee4505dba183c04223e265e401e362f91d5d7e")
6565
endif()
6666
else() # Linux
6767
if (USE_AVX2)
6868
message(STATUS "Using Linux binaries with AVX2")
69-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-linux-x86_64-2.26.1-db1cee4.tar.gz")
70-
SET(DOWNLOAD_SHA256 "139dc1da9b3c74f72bf1b12cc215023582715c2effeab12fdbf7e367fdff7297")
69+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.2/tiledb-linux-x86_64-2.26.2-30fc114.tar.gz")
70+
SET(DOWNLOAD_SHA256 "c16253392de663372ab52a97c6ad5b8c041921dab836b68eb8f90322480a6ec0")
7171
else()
7272
message(STATUS "Using Linux binaries without AVX2")
73-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-linux-x86_64-noavx2-2.26.1-db1cee4.tar.gz")
74-
SET(DOWNLOAD_SHA256 "f6e4fff4d4295157912bd5bdd2a241942adf086c4c818785fce4a17394d8aa7c")
73+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.2/tiledb-linux-x86_64-noavx2-2.26.2-30fc114.tar.gz")
74+
SET(DOWNLOAD_SHA256 "8a69231ddf7ccc9a71f26ef0fedb44d44167ef91f17503ce12011e2cb7ec60bf")
7575
endif()
7676
endif()
7777

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.26.1
2+
TILEDB_GIT_TAG=2.26.2
33
TILEDB_VERBOSE=ON
44
TILEDB_S3=ON
55
TILEDB_AZURE=OFF

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ public void testVersion() {
3535
System.out.println(version);
3636
Assert.assertTrue(version.getMajor() == 2);
3737
Assert.assertTrue(version.getMinor() == 26);
38-
Assert.assertTrue(version.getRevision() == 1);
38+
Assert.assertTrue(version.getRevision() == 2);
3939
}
4040
}

0 commit comments

Comments
 (0)