Perhaps I'm missing something, but from DESCRIPTION:
Package: reactlog
Title: Reactivity Visualizer for 'shiny'
Version: 1.0.0
and R/version.R suggests only "1" is available and known by the package:
reactlog_upgrade <- function(log) {
version <- attr(log, "version")
if (is.null(version)) {
stop("'log' is missing a 'version' attribute. This is required.")
}
version <- as.character(version)
if (identical(version, "1")) {
return(log)
}
stop(
"Versions available: 1\n",
"Latest reactlog version: 1\n",
"Version provided: ", version
)
}
None of the branches overtly suggest version 2. (I'd like to see the presentation on upcoming version 2, can you add a link for what you saw?)