Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.4.1 #207

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading