From d83e4118e0909618f416008dad4f3b3b89eead64 Mon Sep 17 00:00:00 2001 From: Joe Cheng Date: Wed, 27 Nov 2024 14:41:34 -0800 Subject: [PATCH] Add CRAN comments --- cran-comments.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cran-comments.md diff --git a/cran-comments.md b/cran-comments.md new file mode 100644 index 0000000..cebb125 --- /dev/null +++ b/cran-comments.md @@ -0,0 +1,18 @@ +## R CMD check results + +0 errors | 0 warnings | 1 note + +I'm so sorry to be re-submitting this so soon after my previous submission. +That version (1.4.0) has started causing problems for deployed projects +that use packages that link to {later}, like {httpuv} and {promises}, +because their CRAN binaries are built against the latest CRAN {later} but +they may have pinned their locally installed {later} to an older version. +This causes R_GetCCallable calls in those dependent packages to fail on +package startup. + +This submission is intended to fix this problem by gracefully detecting the +version mismatch, and simply not performing R_GetCCallable calls that will +not succeed. + +More details here: +https://github.com/r-lib/later/issues/203