DT::dataTableOutput error - Please upgrade the 'shiny' package to (at least) version 1.0.5.9000

I've been using the DT package in some shiny apps, but this week I started to get this error

Error in checkShinyVersion() :
Please upgrade the 'shiny' package to (at least) version 1.0.5.9000

I remove the references to the DT package and the app works.

I haven't been able to figure out how to get shiny version 1.0.5.9000. Everything I have seen just shows 1.0.5.

Thanks for any help.

Try installing the development version with devtools.

if (!require("devtools"))
  install.packages("devtools")
devtools::install_github("rstudio/shiny")