Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Jun 26, 2017
1 parent 36dc594 commit 1d8271e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: bigrquery
Title: An Interface to Google's 'BigQuery' 'API'
Description: Easily talk to Google's 'BigQuery' database from R.
Version: 0.4.0
Version: 0.4.1
Authors@R: c(
person("Hadley", "Wickham", , "hadley@rstudio.com", c("aut", "cre")),
person("RStudio", role = "cph")
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.4.1

* Fix SQL translation omissions discovered by dbplyr 1.1.0

# Version 0.4.0

## New features
Expand Down
9 changes: 7 additions & 2 deletions R/dplyr.r
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,14 @@ sql_translate_env.BigQueryConnection <- function(x) {
var = sql_prefix("VAR_SAMP"),
any = sql_prefix("LOGICAL_OR", 1),
all = sql_prefix("LOGICAL_ANY", 1)

),
dbplyr::base_win
dbplyr::sql_translator(
.parent = dbplyr::base_win,
sd = dbplyr::win_recycled("sd"),
all = dbplyr::win_recycled("all"),
any = dbplyr::win_recycled("any"),
n_distinct = dbplyr::win_absent("n_distinct")
)
)
}

Expand Down
6 changes: 5 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@

## R CMD check results

0 errors | 0 warnings | 0 notes
0 errors | 0 warnings | 1 notes

* There was one note: there have only been 3 days since the last automated
release. Unfortunately I just discovered a bug thanks to stricter
checks in dbplyr 1.1.0.

## Reverse dependencies

Expand Down

0 comments on commit 1d8271e

Please sign in to comment.