Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Mar 3, 2016
1 parent 91e3206 commit b1b102c
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 15 deletions.
6 changes: 3 additions & 3 deletions 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.1.0.9000
Title: An Interface to Google's 'BigQuery' 'API'
Description: Easily talk to Google's 'BigQuery' database from R.
Version: 0.2.0
Authors@R: c(
person("Hadley", "Wickham", , "hadley@rstudio.com", c("aut", "cre")),
person("RStudio", role = "cph")
Expand Down
19 changes: 13 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
# Version 0.1.0.9000
# Version 0.2.0.

* Computation of the SQL data type that corresponds to a given R object is now more robust against unknown classes. (#95, @krlmlr)
* Compatiable with latest httr.

* A data frame with full schema information is returned for zero-row results. (#88, @krlmlr)
* Computation of the SQL data type that corresponds to a given R object
is now more robust against unknown classes. (#95, @krlmlr)

* A data frame with full schema information is returned for zero-row results.
(#88, @krlmlr)

* New `exists_table()`. (#91, @krlmlr)

* New arguments `create_disposition` and `write_disposition` to `insert_upload_job()`. (#92, @krlmlr)
* New arguments `create_disposition` and `write_disposition` to
`insert_upload_job()`. (#92, @krlmlr)

* Renamed option `bigquery.quiet` to `bigrquery.quiet`. (#89, @krlmlr)

* New `format_dataset()` and `format_table()`. (#81, @krlmlr)

* New `list_tabledata_iter()` that allows fetching a table in chunks of varying size. (#77, #87, @krlmlr)
* New `list_tabledata_iter()` that allows fetching a table in chunks of
varying size. (#77, #87, @krlmlr)

* Add support for API keys via the `BIGRQUERY_API_KEY` environment variable. (#49)
* Add support for API keys via the `BIGRQUERY_API_KEY` environment variable.
(#49)
2 changes: 1 addition & 1 deletion R/auth.r
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bq_env <- new.env(parent = emptyenv())
#'
#' @section API console:
#' To manage your google projects, use the API console:
#' \url{https://cloud.google.com/console}
#' \url{https://console.cloud.google.com/}
#'
#' @keywords internal
#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/upload.r
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ standard_csv <- function(values) {
on.exit(unlink(tmp))

conn <- file(tmp, open = "wb")
write.table(values, conn, sep = ",", na = "", qmethod = "double",
utils::write.table(values, conn, sep = ",", na = "", qmethod = "double",
row.names = FALSE, col.names = FALSE, eol = "\12")
close(conn)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ don't even need to provide a credit card).

To create a project:

1. Open https://cloud.google.com/console
1. Open https://console.cloud.google.com/
2. Click "Create Project" at the top
3. Select a name and project ID, and click "Create"
4. Turn on the BigQuery API by clicking "APIs & Auth" on the left, scrolling
Expand All @@ -72,4 +72,4 @@ query_exec(sql, project = project)
* [SQL reference](https://developers.google.com/bigquery/query-reference)
* [API reference](https://developers.google.com/bigquery/docs/reference/v2/)
* [Query/job console](https://bigquery.cloud.google.com/)
* [Billing console](https://cloud.google.com/console)
* [Billing console](https://console.cloud.google.com/)
9 changes: 8 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@

## R CMD check results

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

* Found the following (possibly) invalid URLs:
URL: https://console.cloud.google.com/

This appears to because the server is incorrectly configured and returns
a 404 for HEAD requests. I've forwarded the problem on to my contact at
google and they're going to look into it.

## Reverse dependencies

Expand Down
2 changes: 1 addition & 1 deletion man/get_access_cred.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b1b102c

Please sign in to comment.