From e85204a37605bededa6f5001939a529d931a5e06 Mon Sep 17 00:00:00 2001 From: Isaiah Norton Date: Tue, 9 Dec 2025 22:56:10 -0500 Subject: [PATCH 1/3] TileDB-R 0.34.0 with TileDB 2.30 --- DESCRIPTION | 2 +- NEWS.md | 4 +++- tools/tiledbVersion.txt | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 094b720e6e..f572d22d1c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: tiledb Type: Package -Version: 0.33.1.1 +Version: 0.34.0 Title: Modern Database Engine for Complex Data Based on Multi-Dimensional Arrays Authors@R: c( person("TileDB, Inc.", role = c("aut", "cph")), diff --git a/NEWS.md b/NEWS.md index 1f022521cd..6b2ee46e52 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,6 @@ -# tiledb (development version) +# tiledb 0.34.0 + +* This release of the R package builds against [TileDB 2.30.0](https://github.com/TileDB-Inc/TileDB/releases/tag/2.30.0), and has also been tested against earlier releases as well as the development version ## Improvements diff --git a/tools/tiledbVersion.txt b/tools/tiledbVersion.txt index a4d4bdf421..5a9c2dd973 100644 --- a/tools/tiledbVersion.txt +++ b/tools/tiledbVersion.txt @@ -1,2 +1,2 @@ -version: 2.29.1 -sha: 9a6284d +version: 2.30.0 +sha: 9b5305d From 7d8b826fb0e818e4ed9a3444d4f4023927ebb663 Mon Sep 17 00:00:00 2001 From: Isaiah Norton Date: Wed, 10 Dec 2025 08:55:36 -0500 Subject: [PATCH 2/3] Add explicit linkage for blosc2 and avx2 --- src/Makevars.win | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makevars.win b/src/Makevars.win index 3004b834c0..e72b65e30b 100644 --- a/src/Makevars.win +++ b/src/Makevars.win @@ -5,7 +5,7 @@ PKG_CPPFLAGS = -I. -I../inst/include -I$(RWINLIB)/include -I$(RWINLIB)/include/t PKG_LIBS = \ -L$(RWINLIB)/lib$(subst gcc,,$(COMPILED_BY))$(R_ARCH) \ -L$(RWINLIB)/lib$(R_ARCH)$(CRT) \ - -ltiledbstatic -lbz2 -lzstd -llz4 -lz -lspdlog -lfmt \ + -ltiledbstatic -lbz2 -lzstd -llz4 -lz -lspdlog -lfmt -mavx2 -lblosc2 \ -laws-cpp-sdk-identity-management -laws-cpp-sdk-cognito-identity -laws-cpp-sdk-sts -laws-cpp-sdk-s3 -laws-cpp-sdk-core \ -llibmagic -lwebp -lpcre2-posix -lpcre2-8 \ -laws-crt-cpp -laws-c-mqtt -laws-c-event-stream -laws-c-s3 -laws-c-auth -laws-c-http -laws-c-io \ From 89c08e498e0ddd20569b2922f22157aed44fb9ec Mon Sep 17 00:00:00 2001 From: Isaiah Norton Date: Wed, 10 Dec 2025 09:47:48 -0500 Subject: [PATCH 3/3] typo --- src/Makevars.win | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makevars.win b/src/Makevars.win index e72b65e30b..1305a75377 100644 --- a/src/Makevars.win +++ b/src/Makevars.win @@ -5,7 +5,7 @@ PKG_CPPFLAGS = -I. -I../inst/include -I$(RWINLIB)/include -I$(RWINLIB)/include/t PKG_LIBS = \ -L$(RWINLIB)/lib$(subst gcc,,$(COMPILED_BY))$(R_ARCH) \ -L$(RWINLIB)/lib$(R_ARCH)$(CRT) \ - -ltiledbstatic -lbz2 -lzstd -llz4 -lz -lspdlog -lfmt -mavx2 -lblosc2 \ + -ltiledbstatic -lbz2 -lzstd -llz4 -lz -lspdlog -lfmt -lavx2 -lblosc2 \ -laws-cpp-sdk-identity-management -laws-cpp-sdk-cognito-identity -laws-cpp-sdk-sts -laws-cpp-sdk-s3 -laws-cpp-sdk-core \ -llibmagic -lwebp -lpcre2-posix -lpcre2-8 \ -laws-crt-cpp -laws-c-mqtt -laws-c-event-stream -laws-c-s3 -laws-c-auth -laws-c-http -laws-c-io \