Releases: colindouglas/retrosheet
Releases · colindouglas/retrosheet
retrosheet v1.1.6
- Updated format of documentation to pass CRAN checks
- Updated
getRetrosheet()
to account for new paths on retrosheet.org - Updated two tests to account for changed location of All Star Team rosters
retrosheet v1.1.5
- Updated tests to account for addition of All Star teams to Retrosheet data
- Added checks to testing so it 'fails gracefully' when
retrosheet.org
is not available - Improved documentation in tests
retrosheet v1.1.4
- Updated tests to skip Rmarkdown tests on CRAN. Avoids pandoc dependency issues on Solaris and MacOS CRAN package checks.
retrosheet v1.1.3
- Updated tests to account for
stringsAsFactors = FALSE
- Switched to making requests via https to align with retrosheet.org changeover
- Updated
README.md
to account formaster
tomain
change in repo
retrosheet v1.1.2
- Replaced kludge-y
closeAllConnections()
withclose()
calls to specific connections (#1) - Added some rudimentary data cleanup to the
get_retrosheet()
wrapper function- Dates in retrosheet data now return date-types, everything else is converted from
chr
via the relatively aggressivetype.convert()
- Dates in retrosheet data now return date-types, everything else is converted from
- Removed
data.table
dependency, replaceddata.table::fread()
withbase::read.csv()
calls get_retrosheet()
now returns regular old dataframes now, instead of tibbles.- Added better handling of HTTP requests. Failed requests are now retried up to three times via
httr::RETRY()