diff --git a/DESCRIPTION b/DESCRIPTION index 6a3e23c5..db73015b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: later Type: Package Title: Utilities for Delaying Function Execution -Version: 0.7.5.9000 +Version: 0.7.5.9001 Authors@R: c( person("Joe", "Cheng", role = c("aut", "cre"), email = "joe@rstudio.com"), person(family = "RStudio", role = "cph"), diff --git a/NEWS.md b/NEWS.md index efa31772..97cc6509 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,6 @@ -## later 0.7.5.9000 +## later 0.7.5.9001 + +* Fixed [issue #77](https://github.com/r-lib/later/issues/77): On some platforms, the system's C library has support for C11-style threads, but there is no `threads.h` header file. In this case, later's configure script tried to use the tinycthread, but upon linking, there were function name conflicts between tinycthread and the system's C library. Later no longer tries to use the system's `threads.h`, and the functions in tinycthread were renamed so that they do not accidentally link to the system C library's C11-style thread functions. [PR #79](https://github.com/r-lib/later/pull/79) * Added `all` argument to `run_now()`; defaults to `TRUE`, but if set to `FALSE`, then `run_now` will run at most one later operation before returning. [PR #75](https://github.com/r-lib/later/pull/75)