diff --git a/DESCRIPTION b/DESCRIPTION index cb2568d..a433fad 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -13,7 +13,7 @@ Description: Bayesian data analysis usually incurs long runtimes For the underlying methodology, please refer to the documentation of 'targets' and 'JAGS' (Plummer 2003) . -Version: 1.0.0 +Version: 1.0.1 License: MIT + file LICENSE URL: https://docs.ropensci.org/jagstargets/, https://github.com/ropensci/jagstargets BugReports: https://github.com/ropensci/jagstargets/issues diff --git a/NEWS.md b/NEWS.md index cb46b4b..5eb71f3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# jagstargets 1.0.1 + +* Reference JOSS paper. + # jagstargets 1.0.0 * Add Zenodo and badge. diff --git a/README.Rmd b/README.Rmd index 871567a..17a0337 100644 --- a/README.Rmd +++ b/README.Rmd @@ -17,7 +17,7 @@ knitr::opts_chunk$set( [![ropensci](https://badges.ropensci.org/425_status.svg)](https://github.com/ropensci/software-review/issues/425) [![DOI](https://zenodo.org/badge/321076424.svg)](https://zenodo.org/badge/latestdoi/321076424) [![R Targetopia](https://img.shields.io/badge/R_Targetopia-member-blue?style=flat&labelColor=gray)](https://wlandau.github.io/targetopia/) - +[![cran](https://www.r-pkg.org/badges/version/jagstargets)](https://cran.r-project.org/package=jagstargets) [![status](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) [![check](https://github.com/ropensci/jagstargets/workflows/check/badge.svg)](https://github.com/ropensci/jagstargets/actions?query=workflow%3Acheck) [![codecov](https://codecov.io/gh/ropensci/jagstargets/branch/main/graph/badge.svg?token=3T5DlLwUVl)](https://app.codecov.io/gh/ropensci/gittargets) diff --git a/README.md b/README.md index 7bb8953..3bbefa7 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,10 @@ [![DOI](https://zenodo.org/badge/321076424.svg)](https://zenodo.org/badge/latestdoi/321076424) [![R Targetopia](https://img.shields.io/badge/R_Targetopia-member-blue?style=flat&labelColor=gray)](https://wlandau.github.io/targetopia/) - +[![cran](https://www.r-pkg.org/badges/version/jagstargets)](https://cran.r-project.org/package=jagstargets) [![status](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) [![check](https://github.com/ropensci/jagstargets/workflows/check/badge.svg)](https://github.com/ropensci/jagstargets/actions?query=workflow%3Acheck) -[![codecov](https://codecov.io/gh/ropensci/jagstargets/branch/main/graph/badge.svg?token=3T5DlLwUVl)](https://app.codecov.io/gh/ropensci/jagstargets) +[![codecov](https://codecov.io/gh/ropensci/jagstargets/branch/main/graph/badge.svg?token=3T5DlLwUVl)](https://app.codecov.io/gh/ropensci/gittargets) [![lint](https://github.com/ropensci/jagstargets/workflows/lint/badge.svg)](https://github.com/ropensci/jagstargets/actions?query=workflow%3Alint) Bayesian data analysis usually incurs long runtimes and cumbersome @@ -192,19 +192,23 @@ guide](https://github.com/ropensci/jagstargets/blob/main/CONTRIBUTING.md). ``` r citation("jagstargets") #> -#> To cite package 'jagstargets' in publications use: +#> To cite jagstargets in publications use: #> -#> William Michael Landau (2021). jagstargets: Targets for JAGS -#> Workflows. https://docs.ropensci.org/jagstargets/, -#> https://github.com/ropensci/jagstargets. +#> Landau, W. M., (2021). The jagstargets R package: a reproducible +#> workflow framework for Bayesian data analysis with JAGS. Journal of +#> Open Source Software, 6(68), 3877, +#> https://doi.org/10.21105/joss.03877 #> #> A BibTeX entry for LaTeX users is #> -#> @Manual{, -#> title = {jagstargets: Targets for JAGS Workflows}, +#> @Article{, +#> title = {The jagstargets R package: a reproducible workflow framework for Bayesian data analysis with JAGS}, #> author = {William Michael Landau}, +#> journal = {Journal of Open Source Software}, #> year = {2021}, -#> note = {https://docs.ropensci.org/jagstargets/, -#> https://github.com/ropensci/jagstargets}, +#> volume = {6}, +#> number = {68}, +#> pages = {3877}, +#> url = {https://doi.org/10.21105/joss.03877}, #> } ``` diff --git a/inst/CITATION b/inst/CITATION new file mode 100644 index 0000000..f52fbb8 --- /dev/null +++ b/inst/CITATION @@ -0,0 +1,20 @@ +citHeader("To cite jagstargets in publications use:") + +citEntry( + entry = "Article", + title = "The jagstargets R package: a reproducible workflow framework for Bayesian data analysis with JAGS", + author = "William Michael Landau", + journal = "Journal of Open Source Software", + year = 2021, + volume = 6, + number = 68, + pages = 3877, + url = "https://doi.org/10.21105/joss.03877", + textVersion = paste( + "Landau, W. M., (2021).", + "The jagstargets R package:", + "a reproducible workflow framework for Bayesian data analysis with JAGS.", + "Journal of Open Source Software, 6(68), 3877,", + "https://doi.org/10.21105/joss.03877" + ) +)