- Use
devtoolsto run checks in the current version of R - Run against
R-develby firing up the vagrant VM (vagrant upat the terminal). Make sure the Vagrantfile and bootstrap.sh provisioning script are for the latest Long Term Support (LTS) release of Ubuntu. If any bootstrap.sh packages aren't compatible with the latest LTS version, fix that. - When all checks pass, bump the version number and date. See below for how to commit the version bump.
Use the --no-verify option to bypass our ad-hoc versioning system (which uses pre-commit hooks to append a datestamp to the version):
$ git commit --no-verify -m "Bump Version number and datestamp"package_directory = # wherever the package is
library(devtools)
release(
pkg = package_directory,
check = TRUE
)$ git tag [version number]
$ git push origin [version number]