Skip to content

Commit 9fd0b99

Browse files
committed
update to TileDB-2.29.0
1 parent 0a20063 commit 9fd0b99

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
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.29.1-SNAPSHOT'
12+
version '0.30.0-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.28.1/tiledb-windows-x86_64-2.28.1-d648231.zip")
52-
SET(DOWNLOAD_SHA256 "4f1789f44896ee41a7328da2bfe43c4110eb4408fb5549e86333462bd16b0816")
51+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.29.0-rc0/tiledb-windows-x86_64-2.29.0-rc0-c3508ee.zip")
52+
SET(DOWNLOAD_SHA256 "bd6d256d69924b0230d72b8397b4bc1ffbdf2a29f2c44514a8fb669366775da4")
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.28.1/tiledb-macos-x86_64-2.28.1-d648231.tar.gz")
59-
SET(DOWNLOAD_SHA256 "ff354d5ce81700ba2c7e74a21ad0c637847574e93bfae237c46b1d0bc46acb58")
58+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.29.0-rc0/tiledb-macos-x86_64-2.29.0-rc0-c3508ee.tar.gz")
59+
SET(DOWNLOAD_SHA256 "cb9c19ca589d6f21bf05fef683fcd176a38a144732e06738bbbb7479102bdcc0")
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.28.1/tiledb-macos-arm64-2.28.1-d648231.tar.gz")
64-
SET(DOWNLOAD_SHA256 "186f820e3f9819bb8fc33bc67dca73e69fcbf92013ed3ed95e42de0f2d1274a4")
63+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.29.0-rc0/tiledb-macos-arm64-2.29.0-rc0-c3508ee.tar.gz")
64+
SET(DOWNLOAD_SHA256 "b8dbf77590bb030edbbbb8d1a09b1db5e51cfe144c3d417535fbebcb34cea500")
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.28.1/tiledb-linux-x86_64-2.28.1-d648231.tar.gz")
70-
SET(DOWNLOAD_SHA256 "2d37bbe827b3e69de77ef00fe7be19089210bf8e16fb5d6c93160586c0651156")
69+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.29.0-rc0/tiledb-linux-x86_64-2.29.0-rc0-c3508ee.tar.gz")
70+
SET(DOWNLOAD_SHA256 "76e1db09790108af5be904ac280d77ce6ccd215bb91eea083d1e4b9124e7936a")
7171
else()
7272
message(STATUS "Using Linux binaries without AVX2")
73-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.28.1/tiledb-linux-x86_64-noavx2-2.28.1-d648231.tar.gz")
74-
SET(DOWNLOAD_SHA256 "3e6438ca7c083f97f4e8ec71578ccff1f797bb6e8f9ca4ba144dc41ec56e3162")
73+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.29.0-rc0/tiledb-linux-x86_64-noavx2-2.29.0-rc0-c3508ee.tar.gz")
74+
SET(DOWNLOAD_SHA256 "0b4359a2ad6ad24118d3fce18fd0d34d2e80d18eda9ea0de4edd8d3e849b8d34")
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.28.0
2+
TILEDB_GIT_TAG=2.29.0-rc0
33
TILEDB_VERBOSE=ON
44
TILEDB_S3=ON
55
TILEDB_AZURE=OFF

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void testVersion() {
3434
Version version = new Version();
3535
System.out.println(version);
3636
Assert.assertTrue(version.getMajor() == 2);
37-
Assert.assertTrue(version.getMinor() == 28);
38-
Assert.assertTrue(version.getRevision() == 1);
37+
Assert.assertTrue(version.getMinor() == 29);
38+
Assert.assertTrue(version.getRevision() == 0);
3939
}
4040
}

0 commit comments

Comments
 (0)