Skip to content

Commit

Permalink
prepare CRAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
elbersb committed Jul 3, 2020
1 parent 750375c commit 6d7191f
Show file tree
Hide file tree
Showing 3 changed files with 4 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: tidylog
Type: Package
Title: Logging for 'dplyr' and 'tidyr' Functions
Version: 1.0.1.9000
Version: 1.0.2
Authors@R: c(
person("Benjamin", "Elbers", email = "[email protected]",
role = c("aut", "cre"), comment = c(ORCID = "0000-0001-5392-3448")),
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This is the submission for version 1.0.1.
This is the submission for version 1.0.2.

## Test environments

Expand Down
4 changes: 2 additions & 2 deletions vignettes/benchmarks.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ bench::mark(
On a larger dataset:

```{r message = FALSE}
df <- tibble(x = rnorm(1000000))
df <- tibble(x = rnorm(100000))
bench::mark(
dplyr::filter(df, x > 0),
Expand Down Expand Up @@ -99,7 +99,7 @@ bench::mark(
On a larger dataset (with many row duplications):

```{r message = FALSE}
N <- 10000
N <- 1000
df1 <- tibble(x1 = rnorm(N), key = round(runif(N) * 10))
df2 <- tibble(x2 = rnorm(N), key = round(runif(N) * 10))
Expand Down

0 comments on commit 6d7191f

Please sign in to comment.