From 55a2ed48a26e836800e352a66d3b03c3ffb696d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Thu, 21 Nov 2024 15:40:08 +0100 Subject: [PATCH 1/4] CRAN comments --- cran-comments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cran-comments.md b/cran-comments.md index 94d820970..d6e056a1a 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,4 +1,4 @@ -duckdb 1.1.2.9903 +duckdb 1.1.3 ## Cran Repository Policy From cabb760ed712843bc74cec02146d9beb30b73d0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Thu, 21 Nov 2024 15:40:09 +0100 Subject: [PATCH 2/4] Bump version to 1.1.3 --- DESCRIPTION | 2 +- NEWS.md | 32 +++++++++----------------------- 2 files changed, 10 insertions(+), 24 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index ea612337b..8fa5bdc27 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: duckdb Title: DBI Package for the DuckDB Database Management System -Version: 1.1.2.9904 +Version: 1.1.3 Authors@R: c( person("Hannes", "Mühleisen", , "hannes@cwi.nl", role = "aut", comment = c(ORCID = "0000-0001-8552-0029")), diff --git a/NEWS.md b/NEWS.md index e2e343c84..7a872b7dd 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,48 +1,34 @@ -# duckdb 1.1.2.9904 +# duckdb 1.1.3 ## Bug fixes - Avoid compiler warning related to `Rboolean` (#594). - - fix: Avoid compiler warning related to `Rboolean` - - Don't use xz if not available -## Chore - -- Undef `TRUE` and `FALSE` (#595). - -## Testing - -- Sync tests with duckplyr (#596). - - - test: Sync tests with duckplyr - - - Skip - - -# duckdb 1.1.2.9903 - ## Features - Update to duckdb v1.1.3, see for details. - - New `duckdb.materialize_callback` option, supersedes `get_last_rel()` (#589). - - New `rel_explain_df()` and `rel_tostring()` (#587). - - Handle empty child values for list constants (#186, @romainfrancois). ## Chore +- Undef `TRUE` and `FALSE` (#595). - Remove `enable_materialization` argument to `rel_from_altrep_df()` in favor of creating a new data frame when needed (#588). - - Flip argument order for `expr_comparison()` (#585). - - Keep `cleanup` files to accommodate different build scenarios (#536). +## Testing + +- Sync tests with duckplyr (#596). + - test: Sync tests with duckplyr + - Skip + + # duckdb 1.1.2 ## Features From 4528a3428d3144e28e1b9fac947ba79d16d646ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Thu, 21 Nov 2024 16:00:53 +0100 Subject: [PATCH 3/4] NEWS --- NEWS.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/NEWS.md b/NEWS.md index 7a872b7dd..ef68a3301 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,31 +2,25 @@ # duckdb 1.1.3 -## Bug fixes - -- Avoid compiler warning related to `Rboolean` (#594). - - fix: Avoid compiler warning related to `Rboolean` - - Don't use xz if not available - ## Features - Update to duckdb v1.1.3, see for details. + - New `duckdb.materialize_callback` option, supersedes `get_last_rel()` (#589). + - New `rel_explain_df()` and `rel_tostring()` (#587). + - Handle empty child values for list constants (#186, @romainfrancois). ## Chore - Undef `TRUE` and `FALSE` (#595). + - Remove `enable_materialization` argument to `rel_from_altrep_df()` in favor of creating a new data frame when needed (#588). -- Flip argument order for `expr_comparison()` (#585). -- Keep `cleanup` files to accommodate different build scenarios (#536). -## Testing +- Flip argument order for `expr_comparison()` (#585). -- Sync tests with duckplyr (#596). - - test: Sync tests with duckplyr - - Skip +- Keep `cleanup` files to accommodate different build scenarios (#536). # duckdb 1.1.2 From 49000cb626e8f9baaba756dbe9d5a6c913f9276a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Thu, 21 Nov 2024 16:07:39 +0100 Subject: [PATCH 4/4] Git-clean only if under Git --- cleanup | 2 +- cleanup.win | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cleanup b/cleanup index 8244efda7..a209c2c92 100755 --- a/cleanup +++ b/cleanup @@ -4,7 +4,7 @@ set -ex # For CI/CD: only compress if expansion is possible too if which xz > /dev/null; then - git clean -fdx src + if [ -d .git ]; then git clean -fdx src; fi cd src tar cvJf duckdb.tar.xz duckdb rm -rf duckdb diff --git a/cleanup.win b/cleanup.win index e347880ec..b8fa55dfd 100644 --- a/cleanup.win +++ b/cleanup.win @@ -4,7 +4,7 @@ set -ex # For CI/CD: only compress if expansion is possible too if which xz > /dev/null; then - git clean -fdx src + if [ -d .git ]; then git clean -fdx src; fi cd src find duckdb -type f | egrep '[.](cc|cpp|h|hpp)$' | xargs dos2unix tar cvJf duckdb.tar.xz duckdb