Skip to content

Commit

Permalink
version bump -> CRAN v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Jun 23, 2022
1 parent 23ae87f commit 424b094
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: pkgstats
Title: Metrics of R Packages
Version: 0.1.0.004
Version: 0.1.1
Authors@R:
person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265"))
Expand Down
23 changes: 16 additions & 7 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"identifier": "pkgstats",
"description": "Static code analyses for R packages using the external code-tagging libraries \"ctags\" and \"gtags\". Static analyses enable packages to be analysed very quickly, generally a couple of seconds at most. The package also provides access to a database generating by applying the main function to the full CRAN archive, enabling the statistical properties of any package to be compared with all other CRAN packages.",
"name": "pkgstats: Metrics of R Packages",
"relatedLink": "https://docs.ropensci.org/pkgstats/",
"relatedLink": ["https://docs.ropensci.org/pkgstats/", "https://CRAN.R-project.org/package=pkgstats"],
"codeRepository": "https://github.com/ropensci-review-tools/pkgstats",
"issueTracker": "https://github.com/ropensci-review-tools/pkgstats/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.1.0.004",
"version": "0.1.1",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down Expand Up @@ -154,6 +154,18 @@
},
"sameAs": "https://CRAN.R-project.org/package=testthat"
},
{
"@type": "SoftwareApplication",
"identifier": "tibble",
"name": "tibble",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tibble"
},
{
"@type": "SoftwareApplication",
"identifier": "visNetwork",
Expand Down Expand Up @@ -271,7 +283,7 @@
},
"SystemRequirements": "ctags, global, C++11"
},
"fileSize": "601.972KB",
"fileSize": "1268.978KB",
"citation": [
{
"@type": "SoftwareSourceCode",
Expand All @@ -289,9 +301,6 @@
}
],
"readme": "https://github.com/ropensci-review-tools/pkgstats/blob/main/README.md",
"contIntegration": [
"https://github.com/ropensci-review-tools/pkgstats/actions?query=workflow%3AR-CMD-check",
"https://app.codecov.io/gh/ropensci-review-tools/pkgstats"
],
"contIntegration": ["https://github.com/ropensci-review-tools/pkgstats/actions?query=workflow%3AR-CMD-check", "https://app.codecov.io/gh/ropensci-review-tools/pkgstats"],
"developmentStatus": "https://www.repostatus.org/#active"
}
11 changes: 2 additions & 9 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
# CRAN notes for pkgstats_0.0.5 submission
# CRAN notes for pkgstats_0.1.1 submission

This is a first submission of a package for static code analysis of R packages. The submission does not yet have an accompanying DOI because the associated manuscript first requires the package to be published on CRAN. Our next submission will include the DOI.
This is a re-submission of a recent first submission which failed vignette builds on CRAN windows machines. This version fixes those failures.

The following changes have been implemented in response to the helpful comments of Gregor from the previous submission attempt:

1. All functions now specify return values.
2. The "Description" of the DESCRIPTION file has been extended to explain what the package actually does.
3. Former use of 'installed.packages' has been replaced with 'find.package'

Note that the comment on the use of 'setwd()' was likely erroneous. There is indeed an *immediate* call to 'on.exit(setwd(oldwd))', but this is embedded within a two-line call that first unlinks directories temporarily created in the target of the initial `setwd()` call. Those sub-directories are created prior to `setwd()`, and the sequence of the `on.exit()` call thus follows this structure, which I believe to be the appropriate.

## Test environments

Expand Down

0 comments on commit 424b094

Please sign in to comment.