From ba88f94556f70d9c818c10158c4be135c3d32c8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 29 Oct 2016 14:28:54 +0200 Subject: [PATCH 1/7] up .travis.yml --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 62b8604..51d271e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,16 +21,16 @@ addons: # Matrix: 3x Linux, 1x OS X matrix: include: - - r: oldrel - r: release env: - DEPLOY_PAGES=true r_github_packages: - - krlmlr/pkgdown@develop + - hadley/pkgdown - krlmlr/travis@develop r_packages: - covr - roxygen2 + - r: oldrel - r: devel - os: osx osx_image: xcode7.2 From eec22927ded3265f32ffb65b959627993e2f27cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 29 Oct 2016 14:29:25 +0200 Subject: [PATCH 2/7] bump version to 1.1 --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 1706ae1..2e515ca 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: rprojroot Title: Finding Files in Project Subdirectories -Version: 1.0-7 +Version: 1.1 Authors@R: person(given = "Kirill", family = "Müller", role = c("aut", "cre"), email = "krlmlr+r@mailbox.org") Description: Robust, reliable and flexible paths to files below a From 6b077f36c7a8ef2c99d1914d84d5750aab0958a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 29 Oct 2016 14:40:04 +0200 Subject: [PATCH 3/7] NEWS --- NEWS.md | 50 ++++++++++++++++++-------------------------------- 1 file changed, 18 insertions(+), 32 deletions(-) diff --git a/NEWS.md b/NEWS.md index 9b8bb4a..6b0068e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,46 +1,32 @@ -## rprojroot 1.0-7 (2016-10-23) +# rprojroot 1.1 (2016-10-29) -- New `is_testthat` and `find_testthat_root_file()` that looks for `tests/testthat` root (#14). -- Improve navbar on project page. -- Uses `backports` to simplify compatibility with R 3.0.0. -- New `is_remake_project` and `find_remake_root_file()` that looks for remate project (#17). +- Compatibility + - Compatible with R >= 3.0.0 with the help of the `backports` package. +- New root criteria + - `is_remake_project` and `find_remake_root_file()` look for [remake](https://github.com/richfitz/remake) project (#17). + - `is_testthat` and `find_testthat_root_file()` that looks for `tests/testthat` root (#14). + - `from_wd`, useful for creating accessors to a known path (#11). -## rprojroot 1.0-6 (2016-10-22) +- Minor enhancement + - Criteria can be combined with the `|` operator (#15). -- Travis tests three R versions, and OS X. +- Documentation + - Add package documentation with a few examples (#13). + - Clarify difference between `find_file()` and `make_fix_file()` in vignette (#9). + - Remove unexported functions from documentation and examples (#10). + - Use `pkgdown` to create website. +- Testing + - Use Travis instead of wercker. Travis tests three R versions, and OS X. + - Improve AppVeyor testing. -## rprojroot 1.0-5 (2016-10-22) -- Use Travis instead of wercker. -- Criteria can be combined with the `|` operator (#15). - - -## rprojroot 1.0-4 (2016-05-30) - -- Improve AppVeyor testing. -- Restore compatibility with R < 3.2. -- Add package documentation with a few examples (#13). - - -## rprojroot 1.0-3 (2016-05-13) - -- New root criterion `from_wd`, useful for creating accessors to a known path (#11). -- Clarify difference between `find_file()` and `make_fix_file()` in vignette (#9). -- Remove unexported functions from documentation and examples (#10). - - -## rprojroot 1.0-2 (2016-03-28) +# rprojroot 1.0-2 (2016-03-28) - Fix test that fails on Windows only on CRAN. -## rprojroot 1.0-1 (2016-03-26) - -- Updated NEWS. - - # rprojroot 1.0 (2016-03-26) Initial CRAN release. From 7ca0015bbb6d72630da96da9e7e590916f4d0292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 29 Oct 2016 14:52:34 +0200 Subject: [PATCH 4/7] revdep --- .Rbuildignore | 1 + .gitignore | 1 + revdep/check.R | 5 +++++ 3 files changed, 7 insertions(+) create mode 100644 revdep/check.R diff --git a/.Rbuildignore b/.Rbuildignore index 8d19379..f4e3b56 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -18,3 +18,4 @@ ^scripts/deploy-pages\.sh$ ^docs$ ^_pkgdown\.yml$ +^revdep$ diff --git a/.gitignore b/.gitignore index 14d2289..0f3eafa 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ inst/doc /docs/ /vignettes/*.html +/revdep/.cache.rds diff --git a/revdep/check.R b/revdep/check.R new file mode 100644 index 0000000..e262948 --- /dev/null +++ b/revdep/check.R @@ -0,0 +1,5 @@ +library("devtools") + +revdep_check() +revdep_check_save_summary() +revdep_check_print_problems() From 8a9cbf3c56090edbf117cee66e30b561a9fe2a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 29 Oct 2016 15:00:44 +0200 Subject: [PATCH 5/7] CRAN comments --- cran-comments.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cran-comments.md b/cran-comments.md index 80967de..6395cb6 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,14 +1,15 @@ ## Test environments -* local Ubuntu install, R 3.2.4 -* ubuntu 12.04 (on travis-ci), R 3.2.4 -* win-builder (devel and release) +* local Ubuntu install, R 3.3.1 +* ubuntu 12.04 (on travis-ci, R devel, release, and oldrel) +* OS X (on travis-ci, R release) + win-builder (devel and release) + ## R CMD check results -0 errors | 0 warnings | 1 note +OK -* 1 day since last update: Fix checks that fail on Windows. ## Reverse dependencies -No reverse dependencies yet. +* I have run R CMD check on the 2 downstream dependencies, both were OK. From 4efa1b487d26d89d8a5defa3141cda591effbd65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 29 Oct 2016 15:00:49 +0200 Subject: [PATCH 6/7] revdep --- revdep/README.md | 46 +++++++++++++++++++++++++++++++++++++++++++++ revdep/checks.rds | Bin 0 -> 815 bytes revdep/problems.md | 32 +++++++++++++++++++++++++++++++ revdep/timing.md | 8 ++++++++ 4 files changed, 86 insertions(+) create mode 100644 revdep/README.md create mode 100644 revdep/checks.rds create mode 100644 revdep/problems.md create mode 100644 revdep/timing.md diff --git a/revdep/README.md b/revdep/README.md new file mode 100644 index 0000000..3015507 --- /dev/null +++ b/revdep/README.md @@ -0,0 +1,46 @@ +# Setup + +## Platform + +|setting |value | +|:--------|:----------------------------| +|version |R version 3.3.1 (2016-06-21) | +|system |x86_64, linux-gnu | +|ui |X11 | +|language |en_US:en | +|collate |en_US.UTF-8 | +|tz |Europe/Busingen | +|date |2016-10-29 | + +## Packages + +|package |* |version |date |source | +|:---------|:--|:-------|:----------|:---------------------------| +|backports | |1.0.3 |2016-06-28 |cran (@1.0.3) | +|knitr | |1.14 |2016-08-13 |cran (@1.14) | +|rmarkdown | |1.0 |2016-07-08 |cran (@1.0) | +|rprojroot | |1.1 |2016-10-29 |local (krlmlr/rprojroot@NA) | +|testthat | |1.0.2 |2016-04-23 |cran (@1.0.2) | +|withr | |1.0.2 |2016-06-20 |cran (@1.0.2) | + +# Check results + +2 packages + +|package |version | errors| warnings| notes| +|:------------|:-------|------:|--------:|-----:| +|googlesheets |0.2.1 | 0| 0| 0| +|sparklyr |0.4 | 0| 0| 0| + +## googlesheets (0.2.1) +Maintainer: Jennifer Bryan +Bug reports: https://github.com/jennybc/googlesheets/issues + +0 errors | 0 warnings | 0 notes + +## sparklyr (0.4) +Maintainer: Javier Luraschi +Bug reports: https://github.com/rstudio/sparklyr/issues + +0 errors | 0 warnings | 0 notes + diff --git a/revdep/checks.rds b/revdep/checks.rds new file mode 100644 index 0000000000000000000000000000000000000000..bf6740f7fc38ba1ebc9c0fd4cd022adba461c275 GIT binary patch literal 815 zcmV+~1JL{*iwFP!000001Km|mZ__XoPm^|kx{W{D5e^mNuuarS+NzWZp>7fgO%sQ~ zByN?Px{24sj%;ULIq?DbXz+zNtT<_$Hg1vNz=cSz?caOP?>)btUq9Ck!!QlYsu-q~ zE)V5TRgQbZu+sIm9FOFvNOV`uPp=xch;d9wqYc`?Z5*{6x7&2O&6azt={~;ebqC$f zi$;h^a@X`pqA6IPT~~v45E)#5JVivq_c9z@e|p#KX`+X36GmfXpC=p>f6cO<1?W1> z)+?Esxgx0%7$KgkZ|C54o?gD);xjH#l<&+0t2jeQ`~><)nRzq}p-@{>e92eUQHpAg zy%2J)#d#1*`!QwF0FyCYDM2k)+{zVqhtQkElnJhmn-DCRlClW0$%sx#0mO{nFiM3A zT_7$*0M))W#Ufyu6XTEPvR%yu4rr^~UEp?9t)*bObXV0|2#W{_S(sg=JUW~kTj0^SuV#pxL<&7M`3$QMFl+xsRzTx(S(Ij$n4_s`ybAZ zHyq#k4VV$8GS366DVD{u^h?rJPBxQv!8t`>nlMji;4Y(6py+>)685Y7na}4x7mB9x zY!>WXc;*Xs<~Jz)Krm+VoCROA_F?9{-O>pD>;e&j$A~q~*-Ym8`bO?&eJ-E?${>G=h`#ga{z34`1Vuq0Fl z^cfe)2-B1z81J~{|gdHYg=mx000D9hI;@2 literal 0 HcmV?d00001 diff --git a/revdep/problems.md b/revdep/problems.md new file mode 100644 index 0000000..dc119cb --- /dev/null +++ b/revdep/problems.md @@ -0,0 +1,32 @@ +# Setup + +## Platform + +|setting |value | +|:--------|:----------------------------| +|version |R version 3.3.1 (2016-06-21) | +|system |x86_64, linux-gnu | +|ui |X11 | +|language |en_US:en | +|collate |en_US.UTF-8 | +|tz |Europe/Busingen | +|date |2016-10-29 | + +## Packages + +|package |* |version |date |source | +|:---------|:--|:-------|:----------|:---------------------------| +|backports | |1.0.3 |2016-06-28 |cran (@1.0.3) | +|knitr | |1.14 |2016-08-13 |cran (@1.14) | +|rmarkdown | |1.0 |2016-07-08 |cran (@1.0) | +|rprojroot | |1.1 |2016-10-29 |local (krlmlr/rprojroot@NA) | +|testthat | |1.0.2 |2016-04-23 |cran (@1.0.2) | +|withr | |1.0.2 |2016-06-20 |cran (@1.0.2) | + +# Check results + +0 packages with problems + + + + diff --git a/revdep/timing.md b/revdep/timing.md new file mode 100644 index 0000000..4aa26ce --- /dev/null +++ b/revdep/timing.md @@ -0,0 +1,8 @@ +# Check times + +| |package |version | check_time| +|:--|:------------|:-------|----------:| +|2 |sparklyr |0.4 | 34.4| +|1 |googlesheets |0.2.1 | 33.1| + + From b5a2c4adb37f3d3fa8bb62a868b870d530fd5312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 29 Oct 2016 15:06:24 +0200 Subject: [PATCH 7/7] mention warning --- cran-comments.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cran-comments.md b/cran-comments.md index 6395cb6..2e72a56 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -9,6 +9,8 @@ OK +* I don't see the warnings on R-devel with the updated version anymore. + ## Reverse dependencies