Skip to content

Commit

Permalink
Preparations for submission to CRAN (v0.4.7)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjentsch committed Jul 9, 2024
1 parent 9ccd21b commit bf60086
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Enhancements:
* added `transform_vars_omv`: apply transformations - calculating the square root, the logarithm to the base 10 or
an inversion - to make variables (better) conform to a normal contribution
an inversion - to make variables (better) conform to a normal contribution (incl. unit tests)

## Bug fixes:
* fixed small bugs in `read_omv` and `write_omv` to better handle variable labels
Expand Down
19 changes: 14 additions & 5 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"codeRepository": "https://github.com/sjentsch/jmvReadWrite",
"issueTracker": "https://github.com/sjentsch/jmvReadWrite/issues",
"license": "https://spdx.org/licenses/AGPL-3.0",
"version": "0.4.6",
"version": "0.4.7",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.4.0 (2024-04-24)",
"runtimePlatform": "R version 4.4.1 (2024-06-14)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
Expand All @@ -29,6 +29,15 @@
"@id": "https://orcid.org/0000-0003-2576-5432"
}
],
"copyrightHolder": [
{
"@type": "Person",
"givenName": "Sebastian",
"familyName": "Jentschke",
"email": "sebastian.jentschke@uib.no",
"@id": "https://orcid.org/0000-0003-2576-5432"
}
],
"maintainer": [
{
"@type": "Person",
Expand Down Expand Up @@ -171,7 +180,7 @@
},
"SystemRequirements": null
},
"fileSize": "772.542KB",
"fileSize": "801.311KB",
"citation": [
{
"@type": "SoftwareSourceCode",
Expand All @@ -186,13 +195,13 @@
],
"name": "jmvReadWrite: Read and Write jamovi Files",
"url": "https://CRAN.R-project.org/package=jmvReadWrite",
"description": "R package version 0.4.6"
"description": "R package version 0.4.7"
}
],
"relatedLink": ["https://sjentsch.github.io/jmvReadWrite/", "https://CRAN.R-project.org/package=jmvReadWrite"],
"releaseNotes": "https://github.com/sjentsch/jmvReadWrite/blob/master/NEWS.md",
"readme": "https://github.com/sjentsch/jmvReadWrite/blob/main/README.md",
"contIntegration": ["https://github.com/sjentsch/jmvReadWrite/actions/workflows/ci.yml", "https://github.com/sjentsch/jmvReadWrite/actions/workflows/R-CMD-check.yaml", "https://github.com/sjentsch/jmvReadWrite/actions?query=workflow%3Apkgcheck", "https://github.com/sjentsch/jmvReadWrite/actions/workflows/codecov.yaml", "https://app.codecov.io/gh/sjentsch/jmvReadWrite?branch=main"],
"contIntegration": ["https://github.com/sjentsch/jmvReadWrite/actions/workflows/rhub.yaml", "https://github.com/sjentsch/jmvReadWrite/actions/workflows/R-CMD-check.yaml", "https://github.com/sjentsch/jmvReadWrite/actions/workflows/CI.yml", "https://github.com/sjentsch/jmvReadWrite/actions?query=workflow%3Apkgcheck", "https://app.codecov.io/gh/sjentsch/jmvReadWrite?branch=main"],
"developmentStatus": "https://www.repostatus.org/#active",
"keywords": ["r", "jamovi", "cran"]
}
14 changes: 6 additions & 8 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
# CRAN Notes - jmvReadWrite

## Current version
0.4.6
* ensure that the `dataType` attribute is preserved / honoured by `write_omv` (earlier on, the data type
of a variable / column was determined by a logic and my have changed the class of this column)
* fixed a bug leading to an error in `write_omv` when columns where completely empty (i.e., if they contained
only NAs; incl. the respective unit tests)
* reduced cyclomatic complexity for `replace_omv`, `wide2long_omv`, and `jmvAtt`
0.4.7
* added `transform_vars_omv`: apply transformations - calculating the square root, the logarithm to the base 10 or
an inversion - to make variables (better) conform to a normal contribution (incl. unit tests)
* fixed small bugs in `read_omv` and `write_omv` to better handle variable labels

## Test environments
* `devtools::check()`
- local (Ubuntu 22.04, R 4.4 x86_64-pc-linux-gnu): 0 errors, 0 warnings, 0 notes
* `rhub::rc_submit(platforms=c("linux", "windows", "macos", "macos-arm64"))`
- linux (r-devel), windows (r-devel), macos (r-devel), macos-arm64 (r-devel):
0 errors, 0 warnings, 2 notes (about files found in the main directory; but these files are correctly excluded in .Rbuildignore which rhub doesn't seem to honour)
Status: OK for all four OSes
* `devtools::check_win_devel()`
- status: 0 errors, 0 warnings, 0 notes (status: OK)
- Status: OK

## R CMD check (on .tar.gz)
* status: OK – no notes, no warnings and no errors

0 comments on commit bf60086

Please sign in to comment.