diff --git a/.Rbuildignore b/.Rbuildignore index 867cefe..5ddcd45 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -18,3 +18,4 @@ _pkgdown\.yml ^auth ^secrets\.tar ^bq\.oauth$ +^CRAN-RELEASE$ diff --git a/CRAN-RELEASE b/CRAN-RELEASE new file mode 100644 index 0000000..acadbe5 --- /dev/null +++ b/CRAN-RELEASE @@ -0,0 +1,2 @@ +This package was submitted to CRAN on 2019-10-04. +Once it is accepted, delete this file and tag the release (commit c814f0b039). diff --git a/R/tables.R b/R/tables.R index 30586c9..d1a93a9 100644 --- a/R/tables.R +++ b/R/tables.R @@ -229,7 +229,7 @@ bqr_table_data <- function(projectId = bqr_get_global_project(), #' Creates a BigQuery table. #' #' If setting \code{timePartioning} to \code{TRUE} then the table will be a -#' \href{partioned table}{https://cloud.google.com/bigquery/docs/creating-partitioned-tables} +#' \href{https://cloud.google.com/bigquery/docs/creating-partitioned-tables}{partioned table} #' #' If you want more advanced features for the table, create it then call \link{bqr_patch_table} with advanced configuration configured from \link{Table} #' diff --git a/R/utilities.R b/R/utilities.R index eeea818..6987064 100644 --- a/R/utilities.R +++ b/R/utilities.R @@ -132,6 +132,7 @@ myMessage <- function(..., level = 1){ #' #' @return A random 15 digit hash #' @keywords internal +#' @noRd idempotency <- function(){ set.seed(Sys.time()) paste(sample(c(LETTERS, letters, 0:9), 15, TRUE),collapse="") diff --git a/man/bqr_create_table.Rd b/man/bqr_create_table.Rd index af4eb32..86bde01 100644 --- a/man/bqr_create_table.Rd +++ b/man/bqr_create_table.Rd @@ -31,7 +31,7 @@ Create a Table Creates a BigQuery table. If setting \code{timePartioning} to \code{TRUE} then the table will be a - \href{partioned table}{https://cloud.google.com/bigquery/docs/creating-partitioned-tables} + \href{https://cloud.google.com/bigquery/docs/creating-partitioned-tables}{partioned table} If you want more advanced features for the table, create it then call \link{bqr_patch_table} with advanced configuration configured from \link{Table} } diff --git a/man/idempotency.Rd b/man/idempotency.Rd deleted file mode 100644 index 653c849..0000000 --- a/man/idempotency.Rd +++ /dev/null @@ -1,15 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utilities.R -\name{idempotency} -\alias{idempotency} -\title{Idempotency} -\usage{ -idempotency() -} -\value{ -A random 15 digit hash -} -\description{ -A random code to ensure no repeats -} -\keyword{internal}