diff --git a/.Rbuildignore b/.Rbuildignore index 349bb7a..dd4fa88 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -1,10 +1,10 @@ ^.*\.Rproj$ ^\.Rproj\.user$ -^README\.Rmd$ -^README-.*\.png$ +^README.*$ ^\.travis\.yml$ ^CONDUCT\.md$ ^README\.html$ ^cran-comments\.md$ ^appveyor\.yml$ ^docs$ +^CRAN-RELEASE$ diff --git a/.travis.yml b/.travis.yml index 3981293..7da6022 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,3 +6,6 @@ r: - oldrel - release - devel + +after_success: + - Rscript -e 'covr::codecov()' diff --git a/CRAN-RELEASE b/CRAN-RELEASE new file mode 100644 index 0000000..692c2c6 --- /dev/null +++ b/CRAN-RELEASE @@ -0,0 +1,2 @@ +This package was submitted to CRAN on 2019-10-03. +Once it is accepted, delete this file and tag the release (commit c2eb514aa7). diff --git a/README.Rmd b/README.Rmd index dfce50b..2de9c32 100644 --- a/README.Rmd +++ b/README.Rmd @@ -90,8 +90,20 @@ tidy_html(content(res, as="raw")) tidy_html(content(res, as="text", encoding="UTF-8")) tidy_html(content(res, as="parsed", encoding="UTF-8")) +``` +```{r raw-02, eval=FALSE} tidy_html(suppressWarnings(htmlParse("https://rud.is/test/untidy.html"))) +## +## +## +## +## +## +## +##

https://rud.is/test/untidy.html

+## +## ``` And, show the markup errors: diff --git a/README.md b/README.md index b156a9c..46156a8 100644 --- a/README.md +++ b/README.md @@ -223,7 +223,9 @@ tidy_html(content(res, as="parsed", encoding="UTF-8")) ## ## [1] \n\nportion\n
## @@ -235,7 +237,6 @@ tidy_html(suppressWarnings(htmlParse("https://rud.is/test/untidy.html"))) ##

https://rud.is/test/untidy.html

## ## -## ``` And, show the markup errors: @@ -305,7 +306,7 @@ sum(map_int(book, nchar)) ## [1] 207501 system.time(tidy_book <- tidy_html(book)) ## user system elapsed -## 0.019 0.000 0.019 +## 0.02 0.00 0.02 ``` (It’s usually between 20 & 25 milliseconds to process those 202 @@ -319,7 +320,7 @@ kilobytes of HTML.) Not too shabby. | C/C++ Header | 37 | 0.47 | 5796 | 0.16 | 1227 | 0.20 | 2677 | 0.36 | | C++ | 4 | 0.05 | 647 | 0.02 | 117 | 0.02 | 64 | 0.01 | | R | 10 | 0.13 | 151 | 0.00 | 38 | 0.01 | 235 | 0.03 | -| Rmd | 1 | 0.01 | 47 | 0.00 | 44 | 0.01 | 70 | 0.01 | +| Rmd | 1 | 0.01 | 47 | 0.00 | 44 | 0.01 | 82 | 0.01 | ## Code of Conduct diff --git a/cran-comments.md b/cran-comments.md index 9a5cfc3..b8eeab7 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -2,9 +2,13 @@ * local OS X install, R 3.6.1 * ubuntu 14.04 (on travis-ci), R 3.6.1 * win-builder (devel and release) +* r-hub fedora, debian, windows ## R CMD check results 0 errors | 0 warnings | 1 note -* This is a new release. +* This is a update/fix release. + +- updates the core included C library +- fixes the CRAN check issues identified by Kurt