Skip to content

Commit

Permalink
Merge pull request #207 from r-lib/rc-v1.4.1
Browse files Browse the repository at this point in the history
v1.4.1
  • Loading branch information
jcheng5 authored Nov 28, 2024
2 parents 69721d5 + d83e411 commit a76d798
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: later
Type: Package
Title: Utilities for Scheduling Functions to Execute Later with Event Loops
Version: 1.4.0.9000
Version: 1.4.1
Authors@R: c(
person("Winston", "Chang", role = c("aut", "cre"), email = "[email protected]"),
person("Joe", "Cheng", role = c("aut"), email = "[email protected]"),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# later 1.4.0.9000 (development)
# later 1.4.1

* Fixed #203: Resolves an issue where packages that have `LinkingTo: later` (including `promises` and `httpuv`) and were built against `later` 1.4.0, would fail to load on systems that actually had older versions of `later` installed, erroring out with the message "function 'execLaterFdNative' not provided by package 'later'". With this fix, such dependent packages should gracefully deal with older versions at load time, and complain with helpful error messages if newer C interfaces (than are available on the installed `later`) are accessed. (#204)

Expand Down
18 changes: 18 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a76d798

Please sign in to comment.