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..ef68a3301 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,29 +1,6 @@ -# duckdb 1.1.2.9904 - -## 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 +# duckdb 1.1.3 ## Features @@ -37,12 +14,15 @@ ## 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). + # duckdb 1.1.2 ## Features 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 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