|
1 | | -# writeAlizer 1.7.1 |
2 | | - |
3 | | -### Resubmission summary |
4 | | - |
5 | | -This is a resubmission of **writeAlizer 1.7.0**, addressing the Fedora/Debian CRAN check error related to example execution: |
6 | | - |
7 | | -* The `predict_quality()` examples previously attempted to download model artifacts when CRAN executed `--run-donttest`. |
8 | | -* These examples now explicitly set `options(writeAlizer.offline = TRUE)` to disable downloads during checks. |
9 | | -* Network-dependent examples are conditionally skipped if offline mode is active. |
10 | | -* Local and WinBuilder checks confirm that all examples now run deterministically and produce identical outputs across platforms. |
11 | | - |
12 | | -No functional or API-level changes were made to the package; this update solely improves CRAN compliance and test stability. |
13 | | - |
14 | | -### Changes since last submission |
15 | | - |
16 | | -* Fixed CRAN check error on Fedora/Debian related to `predict_quality()` examples: |
17 | | - - Added a one-line offline guard at the top of examples: |
18 | | - ```r |
19 | | - old_offline <- getOption("writeAlizer.offline") |
20 | | - options(writeAlizer.offline = TRUE) |
21 | | - on.exit(options(writeAlizer.offline = old_offline), add = TRUE) |
22 | | - ``` |
23 | | - - Prevents network downloads when CRAN runs with `--run-donttest`. |
24 | | - - Keeps the offline “example” model demo runnable for users. |
25 | | -* Wrapped the extended “\donttest{}” demos in a runtime guard so they are skipped when offline mode is active on CRAN. |
26 | | -* No runtime changes to package functions. |
27 | | -* Documentation rebuilt with `devtools::document()`. |
28 | | -* Confirmed that cache and artifact directories are not written to `~/.cache` during examples or tests. |
| 1 | +# writeAlizer 1.7.2 |
| 2 | + |
| 3 | +## R CMD check results |
| 4 | + |
| 5 | +Passed `R CMD check` on: |
| 6 | + |
| 7 | +* R-release-windows-x64 |
| 8 | +* R-devel-linux-x64-ubuntu |
| 9 | +* R-release-linux-x64-ubuntu |
| 10 | +* R-oldrel-linux-x64-ubuntu |
| 11 | +* R-release-macos-x64 |
| 12 | + |
| 13 | +No ERRORs or WARNINGs. |
| 14 | + |
| 15 | +## Reverse dependency checks |
| 16 | + |
| 17 | +No reverse dependencies for this package. |
| 18 | + |
| 19 | +## Changes in this version |
| 20 | + |
| 21 | +* new features |
| 22 | + * Added `keep_stem_before_txt()` function to process Coh-Metrix and GAMET filenames that appear as paths |
| 23 | + * integrated `keep_stem_before_txt()` into `import_coh()` `import_gamet()` and `import_merge_gamet_rb()` functions |
| 24 | + |
| 25 | +* improved documentation |
| 26 | + * Added new vignette that details scoring model development |
| 27 | + * Added a `pkgdown()` site to host documentation on GitHub |
| 28 | + |
0 commit comments