Skip to content

Commit 5d11015

Browse files
authored
fledge: CRAN release v1.1.3 (#597)
1 parent b0eb788 commit 5d11015

File tree

5 files changed

+8
-28
lines changed

5 files changed

+8
-28
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: duckdb
22
Title: DBI Package for the DuckDB Database Management System
3-
Version: 1.1.2.9904
3+
Version: 1.1.3
44
Authors@R: c(
55
person("Hannes", "Mühleisen", , "[email protected]", role = "aut",
66
comment = c(ORCID = "0000-0001-8552-0029")),

NEWS.md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,6 @@
11
<!-- NEWS.md is maintained by https://fledge.cynkra.com, contributors should not edit this file -->
22

3-
# duckdb 1.1.2.9904
4-
5-
## Bug fixes
6-
7-
- Avoid compiler warning related to `Rboolean` (#594).
8-
9-
- fix: Avoid compiler warning related to `Rboolean`
10-
11-
- Don't use xz if not available
12-
13-
## Chore
14-
15-
- Undef `TRUE` and `FALSE` (#595).
16-
17-
## Testing
18-
19-
- Sync tests with duckplyr (#596).
20-
21-
- test: Sync tests with duckplyr
22-
23-
- Skip
24-
25-
26-
# duckdb 1.1.2.9903
3+
# duckdb 1.1.3
274

285
## Features
296

@@ -37,12 +14,15 @@
3714

3815
## Chore
3916

17+
- Undef `TRUE` and `FALSE` (#595).
18+
4019
- Remove `enable_materialization` argument to `rel_from_altrep_df()` in favor of creating a new data frame when needed (#588).
4120

4221
- Flip argument order for `expr_comparison()` (#585).
4322

4423
- Keep `cleanup` files to accommodate different build scenarios (#536).
4524

25+
4626
# duckdb 1.1.2
4727

4828
## Features

cleanup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -ex
44

55
# For CI/CD: only compress if expansion is possible too
66
if which xz > /dev/null; then
7-
git clean -fdx src
7+
if [ -d .git ]; then git clean -fdx src; fi
88
cd src
99
tar cvJf duckdb.tar.xz duckdb
1010
rm -rf duckdb

cleanup.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -ex
44

55
# For CI/CD: only compress if expansion is possible too
66
if which xz > /dev/null; then
7-
git clean -fdx src
7+
if [ -d .git ]; then git clean -fdx src; fi
88
cd src
99
find duckdb -type f | egrep '[.](cc|cpp|h|hpp)$' | xargs dos2unix
1010
tar cvJf duckdb.tar.xz duckdb

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
duckdb 1.1.2.9903
1+
duckdb 1.1.3
22

33
## Cran Repository Policy
44

0 commit comments

Comments
 (0)