Skip to content

Commit c9721e1

Browse files
take out travis env arg
1 parent fab2338 commit c9721e1

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: bigQueryR
22
Title: Interface with Google BigQuery with Shiny Compatibility
3-
Version: 0.3.1
3+
Version: 0.3.2
44
Authors@R: c(person("Mark", "Edmondson",email = "[email protected]",
55
role = c("aut", "cre")),
66
person("Hadley", "Wickham", , "[email protected]", role = "ctb")

NEWS.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
# bigQuery 0.3.2
2+
3+
* Move to new batch endpoint (#41)
4+
15
# bigQuery 0.3.1
26

37
* Fix asynch job fail if user previously `set.seed()` (#37)
48
* skip tests on CRAN causing error
59
* fix warning in scope check (#40)
6-
* Move to new batch endpoint (#41)
710

811
# bigQueryR 0.3.0
912

R/options.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
.onAttach <- function(libname, pkgname){
2424

2525
attempt <- try(googleAuthR::gar_attach_auto_auth("https://www.googleapis.com/auth/cloud-platform",
26-
environment_var = "BQ_AUTH_FILE",
27-
travis_environment_var = "TRAVIS_BQ_AUTH_FILE"))
26+
environment_var = "BQ_AUTH_FILE"))
2827

2928
if(inherits(attempt, "try-error")){
3029
warning("Problem using auto-authentication when loading from BQ_AUTH_FILE.

cran-comments.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
* ubuntu 12.04 (on travis-ci), R 3.4.0
44
* Windows (on win-builder) R 3.4.0
55

6-
## Failed CRAN tests
7-
8-
This is a patch to remove failing tests of 0.3.0 from being ran on CRAN - as they are authenticated API based they fail in CRANs automated testing.
9-
106
## R CMD check results
117

128
0 errors | 0 warnings | 1 notes

0 commit comments

Comments
 (0)