Thank you for all your work on this very useful package. I was using the following code in a code chunk in a R Markdown file
JuliaCall::julia_command("VERSION")
and got the following warning
## Warning: The internal function knitr:::wrap() has been deprecated. Please use
## the exported function knitr::sew() instead.
## Warning: The internal function knitr:::wrap() has been deprecated. Please use
## the exported function knitr::sew() instead.
I've updated the corresponding code with sew() that has been introduced in knitr 1.33 (https://github.com/yihui/knitr/blob/master/NEWS.md) and will replace wrap(), plus it is exported. All good locally and as expected, no more warning in my example.
Hi @Non-Contradiction
Thank you for all your work on this very useful package. I was using the following code in a code chunk in a R Markdown file
and got the following warning
I've updated the corresponding code with
sew()
that has been introduced inknitr
1.33 (https://github.com/yihui/knitr/blob/master/NEWS.md) and will replacewrap()
, plus it is exported. All good locally and as expected, no more warning in my example.