Skip to content

Commit 0a20063

Browse files
authored
update build.gradle (#377)
1 parent 041e677 commit 0a20063

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
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.0-SNAPSHOT'
12+
version '0.29.1-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.0/tiledb-windows-x86_64-2.28.0-4764907.zip")
52-
SET(DOWNLOAD_SHA256 "1dbd17e661fa6a297009abc3c927a2da9dd575395851f42bd21c61e0bf9696ac")
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")
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.0/tiledb-macos-x86_64-2.28.0-4764907.tar.gz")
59-
SET(DOWNLOAD_SHA256 "e23472b04cc84f658b326a7088d1d94e8d5c653a316e4bba2f26e25117a13237")
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")
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.0/tiledb-macos-arm64-2.28.0-4764907.tar.gz")
64-
SET(DOWNLOAD_SHA256 "99ad958d0eb39a0cc3b523b0300d1cff3ec87d4fab0262646817cd252deb0106")
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")
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.0/tiledb-linux-x86_64-2.28.0-4764907.tar.gz")
70-
SET(DOWNLOAD_SHA256 "7efa8fd5dd468193c4b239318ee70c9bdda0c96301bebd0b37e0b30e2b126e0d")
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")
7171
else()
7272
message(STATUS "Using Linux binaries without AVX2")
73-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.28.0/tiledb-linux-x86_64-noavx2-2.28.0-4764907.tar.gz")
74-
SET(DOWNLOAD_SHA256 "ab8e587285458ee850cb7a2347034d7fc02d4be6c55ea7b1867abc5b569a31dc")
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")
7575
endif()
7676
endif()
7777

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() == 28);
38-
Assert.assertTrue(version.getRevision() == 0);
38+
Assert.assertTrue(version.getRevision() == 1);
3939
}
4040
}

0 commit comments

Comments
 (0)