Skip to content

Commit

Permalink
CRAN prep
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEdmondson1234 committed Jun 8, 2018
1 parent 20b358c commit b34968e
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: bigQueryR
Title: Interface with Google BigQuery with Shiny Compatibility
Version: 0.3.2.9000
Version: 0.4.0
Authors@R: c(person("Mark", "Edmondson",email = "[email protected]",
role = c("aut", "cre")),
person("Hadley", "Wickham", , "[email protected]", role = "ctb")
Expand All @@ -14,7 +14,7 @@ BugReports: https://github.com/cloudyr/bigQueryR/issues
License: MIT + file LICENSE
LazyData: TRUE
Depends:
R (>= 3.2.0)
R (>= 3.2)
Imports:
googleAuthR (>= 0.6.2),
googleCloudStorageR (>= 0.2.0),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bigQueryR 0.3.2.9000
# bigQueryR 0.4.0

* support `nullMarker`, `maxBadRecords`, `fieldDelimiter` in upload jobs
* Support BigQuery type `DATE` for R class `Date` data.frame columns (BigQuery type `TIMESTAMP` still default for `POSIXct`columns) (#48)
Expand Down
18 changes: 10 additions & 8 deletions R/globals.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ bqr_global_project <- function(project){
}

#' @rdname bqr_global_project
#' @inheritParams bqr_global_project
#' @export
bq_global_project <- function(...){
bq_global_project <- function(project){
.Deprecated("bqr_global_project")
bqr_global_project(...)
bqr_global_project(project)
}

#' Get global project name
Expand All @@ -57,9 +58,9 @@ bqr_get_global_project <- function(){

#' @rdname bqr_get_global_project
#' @export
bq_get_global_project <- function(...){
bq_get_global_project <- function(){
.Deprecated("bqr_get_global_project")
bqr_get_global_project(...)
bqr_get_global_project()
}

#' Set global dataset name
Expand Down Expand Up @@ -88,10 +89,11 @@ bqr_global_dataset <- function(dataset){
}

#' @rdname bqr_global_dataset
#' @inheritParams bqr_global_dataset
#' @export
bq_global_dataset <- function(...){
bq_global_dataset <- function(dataset){
.Deprecated("bqr_global_dataset")
bqr_global_dataset(...)
bqr_global_dataset(dataset)
}

#' Get global dataset name
Expand All @@ -118,7 +120,7 @@ bqr_get_global_dataset <- function(){

#' @rdname bqr_get_global_dataset
#' @export
bq_get_global_dataset <- function(...){
bq_get_global_dataset <- function(){
.Deprecated("bqr_get_global_dataset")
bqr_get_global_dataset(...)
bqr_get_global_dataset()
}
2 changes: 1 addition & 1 deletion man/bqr_get_global_dataset.Rd

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

2 changes: 1 addition & 1 deletion man/bqr_get_global_project.Rd

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

2 changes: 1 addition & 1 deletion man/bqr_global_dataset.Rd

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

2 changes: 1 addition & 1 deletion man/bqr_global_project.Rd

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

0 comments on commit b34968e

Please sign in to comment.