Skip to content

Commit 424b094

Browse files
committed
version bump -> CRAN v0.1.1
1 parent 23ae87f commit 424b094

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: pkgstats
22
Title: Metrics of R Packages
3-
Version: 0.1.0.004
3+
Version: 0.1.1
44
Authors@R:
55
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265"))

codemeta.json

+16-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"identifier": "pkgstats",
55
"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.",
66
"name": "pkgstats: Metrics of R Packages",
7-
"relatedLink": "https://docs.ropensci.org/pkgstats/",
7+
"relatedLink": ["https://docs.ropensci.org/pkgstats/", "https://CRAN.R-project.org/package=pkgstats"],
88
"codeRepository": "https://github.com/ropensci-review-tools/pkgstats",
99
"issueTracker": "https://github.com/ropensci-review-tools/pkgstats/issues",
1010
"license": "https://spdx.org/licenses/GPL-3.0",
11-
"version": "0.1.0.004",
11+
"version": "0.1.1",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",
@@ -154,6 +154,18 @@
154154
},
155155
"sameAs": "https://CRAN.R-project.org/package=testthat"
156156
},
157+
{
158+
"@type": "SoftwareApplication",
159+
"identifier": "tibble",
160+
"name": "tibble",
161+
"provider": {
162+
"@id": "https://cran.r-project.org",
163+
"@type": "Organization",
164+
"name": "Comprehensive R Archive Network (CRAN)",
165+
"url": "https://cran.r-project.org"
166+
},
167+
"sameAs": "https://CRAN.R-project.org/package=tibble"
168+
},
157169
{
158170
"@type": "SoftwareApplication",
159171
"identifier": "visNetwork",
@@ -271,7 +283,7 @@
271283
},
272284
"SystemRequirements": "ctags, global, C++11"
273285
},
274-
"fileSize": "601.972KB",
286+
"fileSize": "1268.978KB",
275287
"citation": [
276288
{
277289
"@type": "SoftwareSourceCode",
@@ -289,9 +301,6 @@
289301
}
290302
],
291303
"readme": "https://github.com/ropensci-review-tools/pkgstats/blob/main/README.md",
292-
"contIntegration": [
293-
"https://github.com/ropensci-review-tools/pkgstats/actions?query=workflow%3AR-CMD-check",
294-
"https://app.codecov.io/gh/ropensci-review-tools/pkgstats"
295-
],
304+
"contIntegration": ["https://github.com/ropensci-review-tools/pkgstats/actions?query=workflow%3AR-CMD-check", "https://app.codecov.io/gh/ropensci-review-tools/pkgstats"],
296305
"developmentStatus": "https://www.repostatus.org/#active"
297306
}

cran-comments.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
1-
# CRAN notes for pkgstats_0.0.5 submission
1+
# CRAN notes for pkgstats_0.1.1 submission
22

3-
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.
3+
This is a re-submission of a recent first submission which failed vignette builds on CRAN windows machines. This version fixes those failures.
44

5-
The following changes have been implemented in response to the helpful comments of Gregor from the previous submission attempt:
6-
7-
1. All functions now specify return values.
8-
2. The "Description" of the DESCRIPTION file has been extended to explain what the package actually does.
9-
3. Former use of 'installed.packages' has been replaced with 'find.package'
10-
11-
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.
125

136
## Test environments
147

0 commit comments

Comments
 (0)