Hi there, we are releasing dplyr 1.2.0 this Monday and your package was recently flagged in our final round of reverse dependency checks. Sorry we weren't able to get this to you sooner.
You'll need to send an update of your package to CRAN soon, and you'll likely receive an email from CRAN about this after dplyr 1.2.0 makes it to CRAN.
It will likely take 1 week or so for dplyr to make it to CRAN, and CRAN should give you at least 2 additional weeks to make this change.
It looks like you use mutate_(), which was deprecated in dplyr 0.7.0 and is now defunct. Please use mutate() instead.
## Newly broken
* checking examples ... ERROR
```
...
> ### Name: PCcontrib
> ### Title: Shape variation along PC axes
> ### Aliases: PCcontrib PCcontrib.PCA
>
> ### ** Examples
>
> bot.p <- PCA(efourier(bot, 12))
'norm=TRUE' is used and this may be troublesome. See ?efourier #Details
> PCcontrib(bot.p, nax=1:3)
Error:
! `mutate_()` was deprecated in dplyr 0.7.0 and is now defunct.
ℹ Please use `mutate()` instead.
ℹ See vignette('programming') for more help
Backtrace:
▆
1. ├─Momocs::PCcontrib(bot.p, nax = 1:3)
2. ├─Momocs:::PCcontrib.PCA(bot.p, nax = 1:3)
3. │ └─Momocs:::morphospace2PCA(x, xax = i, yax = 1, pos = pos.i)
4. │ └─dplyr::bind_cols(df_shp, df_trans) %>% ...
5. └─dplyr::mutate_(...)
6. └─dplyr:::lazy_defunct("mutate")
7. └─lifecycle::deprecate_stop(...)
8. └─lifecycle:::deprecate_stop0(msg)
9. └─rlang::cnd_signal(...)
Execution halted
```
Hi there, we are releasing dplyr 1.2.0 this Monday and your package was recently flagged in our final round of reverse dependency checks. Sorry we weren't able to get this to you sooner.
You'll need to send an update of your package to CRAN soon, and you'll likely receive an email from CRAN about this after dplyr 1.2.0 makes it to CRAN.
It will likely take 1 week or so for dplyr to make it to CRAN, and CRAN should give you at least 2 additional weeks to make this change.
It looks like you use
mutate_(), which was deprecated in dplyr 0.7.0 and is now defunct. Please usemutate()instead.