Skip to content

Commit 6b5d79f

Browse files
committed
prepare for CRAN submission
1 parent dfc0ab3 commit 6b5d79f

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Authors@R:
1111
family = "Scriven",
1212
role = c("aut", "cph"),
1313
email = "[email protected]"))
14-
Date: 2023-07-05
14+
Date: 2024-02-27
1515
Maintainer: Colin Douglas <[email protected]>
1616
Description: A collection of tools to import and structure the (currently) single-season
1717
event, game-log, roster, and schedule data available from <https://www.retrosheet.org>.

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# retrosheet 1.1.6
2+
* Updated format of documentation to pass CRAN checks
3+
* Updated `getRetrosheet()` to account for new paths on retrosheet.org
4+
* Updated two tests to account for changed location of All Star Team rosters
5+
16
# retrosheet 1.1.5
27
* Updated tests to account for addition of All Star teams to Retrosheet data
38
* Added checks to testing so it 'fails gracefully' when `retrosheet.org` is not available

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ knitr::opts_chunk$set(
1717

1818
[![R-CMD-check](https://github.com/colindouglas/retrosheet/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/colindouglas/retrosheet/actions/workflows/R-CMD-check.yaml)
1919
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/retrosheet)](https://cran.r-project.org/package=retrosheet)
20-
[![License: MIT](https://img.shields.io/badge/license-GPL%20(%3E%3D%202)-blue.svg)](https://opensource.org/license/gpl-2-0/)
20+
[![License: GPL 2.0](https://img.shields.io/badge/license-GPL%20(%3E%3D%202)-blue.svg)](https://opensource.org/license/gpl-2-0)
2121
[![GitHub commit](https://img.shields.io/github/last-commit/colindouglas/retrosheet)](https://github.com/colindouglas/retrosheet/commit/main)
2222
[![Downloads](https://cranlogs.r-pkg.org/badges/last-week/retrosheet)](https://cran.r-project.org/package=retrosheet)
2323
<!-- badges: end -->

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
[![R-CMD-check](https://github.com/colindouglas/retrosheet/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/colindouglas/retrosheet/actions/workflows/R-CMD-check.yaml)
77
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/retrosheet)](https://cran.r-project.org/package=retrosheet)
8-
[![License:
9-
MIT](https://img.shields.io/badge/license-GPL%20(%3E%3D%202)-blue.svg)](https://opensource.org/license/gpl-2-0/)
8+
[![License: GPL
9+
2.0](https://img.shields.io/badge/license-GPL%20(%3E%3D%202)-blue.svg)](https://opensource.org/license/gpl-2-0)
1010
[![GitHub
1111
commit](https://img.shields.io/github/last-commit/colindouglas/retrosheet)](https://github.com/colindouglas/retrosheet/commit/main)
1212
[![Downloads](https://cranlogs.r-pkg.org/badges/last-week/retrosheet)](https://cran.r-project.org/package=retrosheet)

cran-comments.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,22 @@
1-
A minor revision to resolve CRAN Package Check errors arising from changes to
2-
the structure of the source data. Package now also includes resource checks to
3-
ensure that tests 'fail gracefully' if retrosheet.org is not available.
1+
A minor revision to resolve CRAN Package Check note 'lost braces in \\itemize',
2+
as per change noted in second item: https://developer.r-project.org/blosxom.cgi/R-devel/NEWS/2023/10/11
43

5-
I have also updated the three URLs in the README with HTTP status codes >= 300.
4+
Additionally, a remote path has been updated to reflect changed location of source data.
65

7-
There are three unique NOTEs when building this package on R-Hub. My
8-
understanding is that all three are related to issues with R-Hub, not the
9-
package. To be sure, I've also added testing via Github Actions to confirm.
10-
All five builds via Github Actions come back OK.
116

127
## Test environments
138
* locally
14-
* Mint 21.1 Vera, R 4.3.1
9+
* Mint 21.1 Vera, R 4.3.2
1510
* 0 errors ✓ | 0 warnings ✓ | 0 notes ✓
1611

1712
* via winbuilder
18-
* Windows Server 2022 x64, R Under development (unstable) (2023-07-05 r84643 ucrt)
13+
* Windows Server 2022 x64, R Under development (unstable) (2024-02-19 r85946 ucrt)
1914
* Status: OK
2015

2116
* via R-Hub
2217
* Windows Server 2022, R-devel, 64 bit
2318
* Status: 2 NOTEs
24-
* Ubuntu Linux 20.04.1 LTS, R-release, GCC
19+
* Ubuntu Linux 20.04.1 LTS, R-release, GCC
2520
* Status: 1 NOTE
2621
* Fedora Linux, R-devel, clang, gfortran
2722
* Status: 1 NOTE
@@ -40,15 +35,16 @@ All five builds via Github Actions come back OK.
4035

4136
## R-Hub Notes:
4237

43-
* only on Windows R-devel:
38+
* On Windows R-devel:
4439
* NOTE 1: `Found the following files/directories: ''NULL''`
4540
* NOTE 2: `Found the following files/directories: 'lastMiKTeXException'`
46-
* Both notes seem to be related to a bug in R-Hub and can safely be ignored
47-
* Note 1 Issue: https://github.com/r-hub/rhub/issues/560
48-
* Note 2 Issue: https://github.com/r-hub/rhub/issues/503
41+
* Both notes seem to be related to bugs in R-Hub and can safely be ignored
42+
* Note 1 issue: https://github.com/r-hub/rhub/issues/560
43+
* Note 2 issue: https://github.com/r-hub/rhub/issues/503
4944
* On Ubuntu R-release and Fedora R-devel:
5045
* NOTE: `Skipping checking HTML validation: no command 'tidy' found`
51-
* I believe this to be an issue with R-Hub, I cannot add `tidy` to their PATH
46+
* This is an issue with R-Hub (I cannot add `tidy` to their path)
47+
* Issue: https://github.com/r-hub/rhub/issues/548
5248

5349
## Downstream dependencies
5450
None

0 commit comments

Comments
 (0)