-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release roam 0.1.0 #2
Comments
TODO:
There's some code design improvements possible too, a lot of the flags aren't needed but they can be improved in future versions. I think it's most important to have a good design for the first release, where future improvements can be made with minimal breaking changes for users. |
Any updates on CRAN release @FinYang ? |
No updates 😢. Are we going with the current implementation of versioning or do we want to do some rewrites? If going with the current one and only adding vignettes in later versions, I can get it up there soon. Otherwise... |
The versioning can be backwards compatible can't it? If so - then current version to cran is fine. |
Right now we require the package writer to 1. define the obtainer function with an argument called |
Not sure about the need for I can look into it further. |
The The pkg writer doesn't need to use it. If not used, it will save the version as This also makes sense when the dataset is not versioned. If the dataset is not versioned, If the dataset is strictly versioned, the pkg writer can use |
Fair enough, although I use I think |
First release:
usethis::use_cran_comments()
Title:
andDescription:
@return
and@examples
Authors@R:
includes a copyright holder (role 'cph')Prepare for release:
git pull
devtools::build_readme()
urlchecker::url_check()
devtools::check(remote = TRUE, manual = TRUE)
devtools::check_win_devel()
rhub::check_for_cran()
git push
Submit to CRAN:
usethis::use_version('minor')
devtools::submit_cran()
Wait for CRAN...
git push
usethis::use_github_release()
usethis::use_dev_version()
usethis::use_news_md()
git push
The text was updated successfully, but these errors were encountered: