Skip to content

Commit

Permalink
fledge: CRAN release v1.1.3 (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr authored Nov 21, 2024
1 parent b0eb788 commit 5d11015
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 28 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0001-8552-0029")),
Expand Down
28 changes: 4 additions & 24 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,6 @@
<!-- NEWS.md is maintained by https://fledge.cynkra.com, contributors should not edit this file -->

# 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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cleanup
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cleanup.win
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
duckdb 1.1.2.9903
duckdb 1.1.3

## Cran Repository Policy

Expand Down

0 comments on commit 5d11015

Please sign in to comment.