- Set
show = TRUE
andstderr = "2>&1"
in thecallr
process that compiles models. - Add a new
compile
argument tostan_package_model()
(#26, @stemangiola).
- Allow downstream packages to install even if
CmdStanR
is not installed (#20, @xinxinc476).
- Address CRAN warnings in generated packages about non-portable compilation flags (#19, @xinxinc476).
- Remove "internal" installation (#16).
- In the documentation, remove claims that
instantiate
is a good fit for centralized multi-user R environments (c.f. stan-dev/cmdstan#1175). - Check subdirectories of the fixed CmdStan installation path.
- Use
install.libs.R
for both CmdStan ininstantiate
and Stan model compilation in packages (#1, #9, #12). - Stan models should now be in
src/stan/
instead ofinst/stan/
(#12).inst/stan/
should still work for the next few versions, but it is now deprecated. When a modeling package is installed, itsinstall.libs.R
movessrc/stan/
tobin/stan/
and then compiles models insidebin/stan/
. - Disable staged installation for
instantiate
itself to help the hard-coded paths in CmdStan work as expected in "internal" installation.
- Relax
cmdstanr
requirement (now minimum version 0.5.2).
- Generate a modified tarball of the package which always installs CmdStan internally, regardless of environment variables (#8). The appropriate version of this tarball will be attached to forthcoming releases on GitHub.
- Bug fixes for internal CmdStan installation.
- Address CRAN comments from the submission of version 0.0.1.
- First version