Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: bootGOF
Title: Bootstrap Based Goodness-of-Fit Tests
Version: 0.1.0.9000
Version: 0.1.1
Authors@R:
c(person(given = "Marsel",
family = "Scheer",
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 0.1.0.9000
Version 0.1.1
=========================

* fix a warning/note that appears due to cran-checks. Actually I followed roxygen2 documentation about the imports, however the R-cmd-check of cran complains, so a uneccessary import was added to the rd-files.
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ knitr::opts_chunk$set(


[![R build status](https://github.com/MarselScheer/bootGOF/workflows/R-CMD-check/badge.svg)](https://github.com/MarselScheer/bootGOF/actions)
[![Coverage Status](https://img.shields.io/codecov/c/github/MarselScheer/bootGOF/develop.svg)](https://codecov.io/github/MarselScheer/bootGOF?branch=develop)
[![Coverage Status](https://img.shields.io/codecov/c/github/MarselScheer/bootGOF/develop.svg)](https://app.codecov.io/github/MarselScheer/bootGOF?branch=develop)
[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![Project Status: Active – The project has reached a stable, usable
state and is being actively
Expand Down
32 changes: 17 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![R build
status](https://github.com/MarselScheer/bootGOF/workflows/R-CMD-check/badge.svg)](https://github.com/MarselScheer/bootGOF/actions)
[![Coverage
Status](https://img.shields.io/codecov/c/github/MarselScheer/bootGOF/develop.svg)](https://codecov.io/github/MarselScheer/bootGOF?branch=develop)
Status](https://img.shields.io/codecov/c/github/MarselScheer/bootGOF/develop.svg)](https://app.codecov.io/github/MarselScheer/bootGOF?branch=develop)
[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![Project Status: Active – The project has reached a stable, usable
state and is being actively
Expand Down Expand Up @@ -89,33 +89,35 @@ package in your environment by calling:
# sessionInfo

sessionInfo()
#> R version 4.1.0 (2021-05-18)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.2 LTS
#> R Under development (unstable) (2025-08-19 r88650)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.2 LTS
#>
#> Matrix products: default
#> BLAS/LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.8.so
#> BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
#> LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so; LAPACK version 3.12.0
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
#> [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=C
#> [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
#> [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
#> [9] LC_ADDRESS=C LC_TELEPHONE=C
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
#>
#> time zone: Etc/UTC
#> tzcode source: system (glibc)
#>
#> attached base packages:
#> [1] stats graphics grDevices datasets utils methods base
#>
#> other attached packages:
#> [1] bootGOF_0.1.0.9000
#> [1] bootGOF_0.1.1
#>
#> loaded via a namespace (and not attached):
#> [1] knitr_1.29 magrittr_1.5 pkgload_1.1.0 R6_2.4.1
#> [5] rlang_0.4.10 fansi_0.4.1 stringr_1.4.0 tools_4.1.0
#> [9] pkgbuild_1.0.8 checkmate_2.0.0 xfun_0.15 cli_2.0.2
#> [13] withr_2.4.1 htmltools_0.5.0 yaml_2.2.1 assertthat_0.2.1
#> [17] rprojroot_1.3-2 digest_0.6.25 crayon_1.3.4 processx_3.4.3
#> [21] callr_3.4.3 ps_1.3.3 testthat_2.3.2 glue_1.4.1
#> [25] evaluate_0.14 rmarkdown_2.3 stringi_1.4.6 compiler_4.1.0
#> [29] desc_1.2.0 backports_1.1.8 prettyunits_1.1.1 renv_0.14.0
#> [1] digest_0.6.37 desc_1.4.3 backports_1.5.0 R6_2.6.1
#> [5] fastmap_1.2.0 xfun_0.53 knitr_1.50 htmltools_0.5.8.1
#> [9] rmarkdown_2.29 cli_3.6.5 renv_1.1.5 withr_3.0.2
#> [13] pkgload_1.4.0 compiler_4.6.0 rprojroot_2.1.0 tools_4.6.0
#> [17] pkgbuild_1.4.8 checkmate_2.3.3 evaluate_1.0.4 yaml_2.3.10
#> [21] rlang_1.1.6
Loading