Skip to content

Releases: colindouglas/retrosheet

retrosheet v1.1.6

28 Feb 14:44
Compare
Choose a tag to compare
  • 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

03 Aug 14:17
Compare
Choose a tag to compare
  • 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

16 Sep 02:02
Compare
Choose a tag to compare
  • Updated tests to skip Rmarkdown tests on CRAN. Avoids pandoc dependency issues on Solaris and MacOS CRAN package checks.

retrosheet v1.1.3

18 Dec 21:07
Compare
Choose a tag to compare
  • Updated tests to account for stringsAsFactors = FALSE
  • Switched to making requests via https to align with retrosheet.org changeover
  • Updated README.md to account for master to main change in repo

retrosheet v1.1.2

15 May 12:53
Compare
Choose a tag to compare
  • Replaced kludge-y closeAllConnections() with close() 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 aggressive type.convert()
  • Removed data.table dependency, replaced data.table::fread() with base::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()