Version naming updated, script added 2022-09-22 14:32:08

This commit is contained in:
AG Damsbo 2022-09-22 14:32:08 +02:00
parent b62c68eebc
commit c0cb859e49
3 changed files with 19 additions and 4 deletions

View File

@ -1,10 +1,11 @@
Package: stRoke
Title: Providing tools for work in clinical stroke research.
Version: 0.0.0.9000
Version: 0.22.9.2
Authors@R:
person("Andreas Gammelgaard", "Damsbo", , "agdamsbo@clin.au.dk", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-7559-1154"))
Description: For a start this package migrates functions from the agdamsbo/daDoctoR-package.
Description: R functions for convenient data management an danalysis in health research.
For a start this package migrates functions from the agdamsbo/daDoctoR-package.
License: GPL-3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)

View File

@ -6,7 +6,7 @@
\alias{stRoke-package}
\title{stRoke: Providing tools for work in clinical stroke research.}
\description{
For a start this package migrates functions from the agdamsbo/daDoctoR-package.
R functions for convenient data management an danalysis in health research. For a start this package migrates functions from the agdamsbo/daDoctoR-package.
}
\author{
\strong{Maintainer}: Andreas Gammelgaard Damsbo \email{agdamsbo@clin.au.dk} (\href{https://orcid.org/0000-0002-7559-1154}{ORCID})

View File

@ -8,4 +8,18 @@ usethis::use_package()
spelling::spell_check_setup()
pkgdown:::build_site()
pkgdown:::build_site()
# https://privefl.github.io/advr38book/packages.html#pkg-start
# Update version
source("ver_upd.R")
updatePackageVersion()
# Commit and push
commit_message<-"Version naming updated, script added"
git2r::commit(all=TRUE, message=paste(commit_message,lubridate::now()))
system("/usr/bin/git push origin HEAD:refs/heads/master")