Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5f43eef

Browse files
committed
Bump version: 1.6.0.9000 -> 1.6.1 and re-build docs.
1 parent 7d3b51d commit 5f43eef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+506
-460
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ are not included in the package tarball for distribution. They are all intended
4040
to be executed from the root directory of the package. The convenience scripts
4141
include:
4242

43-
* `build.sh` runs `R CMD check`
43+
* `build.sh` runs `R CMD build` and `R CMD check`
4444
* `bump-version.R` bumps the version across all the necessary package files
4545
* `contribute.R` performs some basic checks that should be run before
4646
contributing a Pull Request
@@ -52,8 +52,8 @@ contributing a Pull Request
5252
* Bump version with [scripts/bump-version.R](scripts/bump-version.R)
5353
* Update [NEWS.md](NEWS.md): Check `git log` and make sure to reference GitHub
5454
Issues/PRs
55-
* Run [scripts/document.R](scripts/document.R) to update Rd files, install the package locally,
56-
and build the online documentation with [pkgdown][]
55+
* Run [scripts/document.R](scripts/document.R) to update Rd files, install the
56+
package locally, and build the online documentation with [pkgdown][]
5757
* Run [scripts/build.sh](scripts/build.sh) to confirm tests pass locally
5858
* Test on [rhub][]:
5959
* Have to validate email first with `rhub::validate_email()`. Copy-paste
@@ -78,7 +78,7 @@ the release "workflowr x.x.x" and copy-paste the Markdown entry from
7878
site][cran-submit]. You will receive an email to request confirmation, then an
7979
email confirming the package was submitted, and then an email with the test
8080
results. Once it is accepted to CRAN, monitor the [check results][check-results]
81-
for any surpise errors. Also, these builds are when the binaries are built for
81+
for any surprise errors. Also, these builds are when the binaries are built for
8282
Windows and macOS, so they aren't available until they are finished. You will
8383
receive an email once all the Windows binaries are available for download
8484
(devel, release, oldrel).

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: workflowr
22
Type: Package
33
Title: A Framework for Reproducible and Collaborative Data Science
4-
Version: 1.6.0.9000
4+
Version: 1.6.1
55
Authors@R: c(
66
person("John", "Blischak", role = c("aut", "cre"),
77
email = "[email protected]",

NEWS.md

Lines changed: 52 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,67 @@
1-
# workflowr 1.6.0.9000
1+
# workflowr 1.6.1
2+
3+
This patch release of workflowr includes minor improvements, updated
4+
documentation, bug fixes, and lots of internal refactoring.
5+
6+
## Minor improvements
7+
8+
* Workflowr functions check if the working directory exists
9+
(idea from @pcarbo, #185)
210

3-
* Workflowr functions check if the working directory exists (idea from @pcarbo,
4-
#185)
511
* `wflow_use_github()` can now create repositories for GitHub organizations
612
using the new argument `organization`. However, GitLab Groups should still be
7-
specified with the argument `username` for `wflow_use_gitlab()` (bug report from
8-
@stephens999, #186)
13+
specified with the argument `username` for `wflow_use_gitlab()`
14+
(bug report from @stephens999, #186)
15+
916
* Any workflowr function that prompts for user input will continue to re-prompt
10-
until valid input has been entered (or canceled by hitting the key `Esc`) (idea
11-
from @pcarbo)
17+
until valid input has been entered (or canceled by hitting the key `Esc`)
18+
(idea from @pcarbo)
19+
20+
* All functions that commit to the Git repository first check for the
21+
availability of the Git variables user.name and user.email (either global or
22+
local), which are required for creating a commit
23+
(#85)
24+
25+
* The workflowr icon is displayed in browser tabs of workflowr websites
26+
(idea from @pcarbo)
27+
28+
## Updated documentation
29+
1230
* Document that GitLab.com provides private repositories with access control to
13-
the source code repository and the website (#187)
14-
* Internal refactoring for increased speed and improved error handling of input
15-
arguments
16-
* Check for class with `inherits()` (#189)
17-
* Update URL to RStudio-specific instructions for installing pandoc (bug report
18-
from @PietrH, #190)
19-
* Fix Windows-specific bug that caused the table of past versions to be missing
20-
from the workflowr report (bug introduced in version 1.5.0)
31+
the source code repository and the website
32+
(#187)
33+
34+
* Update URL to RStudio-specific instructions for installing pandoc
35+
(bug report from @PietrH, #190)
36+
2137
* Document in the FAQ vignette how to include an external image using an
22-
absolute URL to the image hosted on another website (idea from @JiaxiangBU,
23-
#159)
38+
absolute URL to the image hosted on another website
39+
(idea from @JiaxiangBU, #159)
40+
2441
* Document how to embed Shiny apps with `knitr::include_app()` and
25-
[shinyapps.io](http://www.shinyapps.io/) (idea from @rsimon64, #130)
26-
* All functions that commit to the Git repository first check for the
27-
availability of the Git variables user.name and user.email (either global or
28-
local), which are required for creating a commit (#85)
42+
[shinyapps.io](http://www.shinyapps.io/)
43+
(idea from @rsimon64, #130)
44+
2945
* Update the FAQ on including external images to account for the breaking change
30-
in `knitr::include_graphics()` introduced in knitr version 1.28 (bug report from
31-
@ditordccaa, #103)
46+
in `knitr::include_graphics()` introduced in knitr version 1.28
47+
(bug report from @ditordccaa, #103)
48+
3249
* Add FAQ entry on how to use a Git hosting site that uses the HTTP protocol
3350
(idea from @antass, #163)
51+
52+
## Bug fixes
53+
54+
* Fix Windows-specific bug that caused the table of past versions to be missing
55+
from the workflowr report (bug introduced in version 1.5.0)
56+
57+
## Internal refactoring
58+
59+
* Internal refactoring for increased speed and improved error handling of input
60+
arguments
61+
* Check for class with `inherits()`
62+
(#189)
3463
* Switch to use pandoc option `--include-in-header` to insert workflowr-specific
3564
CSS and other metadata (surprisingly `--include-before-body` works fine)
36-
* Add workflowr icon to browser tabs of workflowr websites (idea from @pcarbo)
3765

3866
# workflowr 1.6.0
3967

cran-comments.md

Lines changed: 6 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,18 @@
11
## Test environments
22

3-
* Ubuntu 18.04, R 3.6.2 (local)
4-
* Debian GNU/Linux bullseye/sid, R 3.6.2 (CircleCI)
5-
* Debian GNU/Linux bullseye/sid (no pandoc), R 3.6.2 (CircleCI)
3+
* Ubuntu 18.04, R 3.6.3 (local)
4+
* Debian GNU/Linux bullseye/sid, R 3.6.3 (CircleCI)
5+
* Debian GNU/Linux bullseye/sid (no pandoc), R 3.6.3 (CircleCI)
66
* Ubuntu 16.04, R 3.6.1 (r-hub)
77

88
* macOS 10.10.5, R 3.3.3 (local)
99
* macOS 10.13.6, R 3.6.2 (Travis-CI)
10-
* macOS 10.11.6, R 3.6.2 (r-hub)
10+
* macOS 10.11.6, R 3.6.3 (r-hub)
1111

12-
* Windows 10, R 3.6.1 (local)
13-
* Windows Server 2012 R2 (x64/x64), R 3.6.2 (AppVeyor)
14-
* Windows Server 2008 R2 SP1 (32/64 bit), R 3.6.2 (r-hub)
12+
* Windows 10, R 3.6.3 (local)
13+
* Windows Server 2012 R2 (x64/x64), R 3.6.3 (AppVeyor)
1514
* winbuilder (release, devel)
1615

1716
## R CMD check results
1817

1918
0 errors | 0 warnings | 0 notes
20-
21-
## Previous CRAN checks
22-
23-
Workflowr version 1.5.0 had one unit test that would sporadically fail the CRAN
24-
checks (see output below). This is because it was a timezone-based error, and
25-
thus would only fail if the checks were run at a certain time of day in the
26-
given timezone.
27-
28-
I have fixed the timezone error in version 1.6.0. Furthermore, I contributed a
29-
patch to the dependency git2r to prevent myself and other from making similar
30-
timezone errors in the future.
31-
32-
https://github.com/ropensci/git2r/pull/408
33-
34-
Running ‘testthat.R’ [42s/94s]
35-
Running the tests in ‘tests/testthat.R’ failed.
36-
Complete output:
37-
> library("testthat")
38-
> library("workflowr")
39-
This is workflowr version 1.5.0
40-
Run ?workflowr for help getting started
41-
>
42-
> test_check("workflowr")
43-
── 1. Failure: Conversion of git_time to character string of date is correct (@t
44-
as.character(Sys.Date()) not identical to as.character(as.Date(as.POSIXct(c1$author$when))).
45-
1/1 mismatches
46-
x[1]: "2019-12-19"
47-
y[1]: "2019-12-18"
48-
49-
══ testthat results ═══════════════════════════════════════════════════════════
50-
[ OK: 1100 | SKIPPED: 152 | WARNINGS: 0 | FAILED: 1 ]
51-
1. Failure: Conversion of git_time to character string of date is correct (@test-report.R#24)
52-
53-
Error: testthat unit tests failed
54-
Execution halted

docs/404.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/CODE_OF_CONDUCT.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/CONTRIBUTING.html

Lines changed: 16 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)