Changelog
Source:NEWS.md
washr 1.1.1
A patch release with two fixes, both of which stopped a scaffolded package from building or checking.
setup_ci()now writes the workflow file unchanged. It was written throughusethis::use_template(), which renders with whisker, and whisker reads{{ }}as its own delimiters. Every${{ ... }}GitHub Actions expression came out as a bare$, soruns-on: $matched no runner and each matrix job queued until the 24 hour limit and then failed. A package scaffolded with 1.1.0 therefore shipped a workflow that never ran (#130).use_brand()reads thepathof a logo entry written as a list of path and alt text, the form openwashdata/brand uses since 1.0.0. Before, the alt text was read as a second path and the call failed after it had already written_brand.yml(#123).
washr 1.1.0
CRAN release: 2026-09-02
The first minor release under the new maintainer. Every function now reads what is there, merges its changes, and is safe to run again. The FAIR layer is one experimental function that derives schema.org metadata from the package files. Ten exports remain: seven of the nine from 1.0.2 (fill_dictionary() and generate_roxygen_docs() are internal now) plus three new ones; eight helpers that never reached CRAN are gone. Imports go from 16 to 10.
New
New
setup_ci()writes the GitHub Actions workflow that runsR CMD checkon every push and pull request tomainanddev, on macOS, Windows and three versions of R on Linux, and adds the matching badge toREADME.Rmd. The README template carries the badge as well. The openwashdata review standard requires the workflow with thedevtrigger, so a package scaffolded with washr meets that part of the review floor by construction (#86). The workflow this release wrote was corrupt and never ran; fixed in 1.1.1 (#130).update_metadata()is rewritten as the one FAIR step (lifecycle: experimental). It derives a schema.org Dataset description from DESCRIPTION,data-raw/dictionary.csv,CITATION.cffand the files ininst/extdata, writes it as JSON-LD intopkgdown/templates/in-header.htmlso every page of the site carries it, and ends by listing the fields it could not fill. Spatial and temporal coverage and keywords live in DESCRIPTION asX-schema.org-spatialCoverage,X-schema.org-temporalCoverageandX-schema.org-keywords. It no longer calls the dataspice helpers, creates nodata/metadatafolder, and writes noinst/extdata/metadata.json; existing copies of both are ignored.generate_jsonld()is no longer exported (it is the internal builder), and lubridate leaves Imports (#68, #70, #67).New
use_brand()installs the openwashdata brand (_brand.ymland the logo files it references) from the central openwashdata/brand repository into the active package, refreshes an existing copy idempotently, and wires an existing_pkgdown.ymlto the brand through bslib so the package site renders with the brand fonts and colors (#109).setup_readme()gainshas_example, the argument the guide documents. Withhas_example = TRUEthe README carries an Example section with a commented ggplot2 scaffold for a first plot, pairing with the argument of the same name onsetup_website(). The function now stops with a clear message whendata/holds no data object instead of writing a README withNAin it, and says which data object the template documents when there are several (#74, supersedes #24).update_citation()gainsbuild. Withbuild = FALSEit regenerates the citation files and adds the badge without rebuilding README.md and the site, for scripts and tests (#75).
Changed
- Idempotency and ergonomics sweep of the core (#73). Every function that rewrites a file follows read-merge-write and is safe to re-run:
-
setup_website()keeps an existing_pkgdown.ymlas it is and only rebuilds the site, so the guide’s “answer No when prompted” step goes away; it no longer crashes without a.gitignore; and it leavesdocsignored when a pkgdown workflow deploys the site, or when the newtrack_docs = FALSEargument says so (#104). The example article is created once. - The
_pkgdown.ymltemplate carries the Pages URL as the site URL, the explanatory comments, and a reference index with one entry per data object, matching the openwashdata review standard’s template. -
update_citation()re-run without adoikeeps the DOI already on file instead of dropping it, moves keywords typed intoCITATION.cffby hand toX-schema.org-keywordsin DESCRIPTION (their canonical home, from where cffr carries them forward), and rebuilds the README only when the badge changes. -
setup_roxygen()re-run regenerates only the@formatblock and keeps everything below it (@source,@examples, and other text), writes nothing when the result is unchanged, and errors clearly when a file has no@formatline instead of crashing. -
setup_dictionary()records the first class of multi-class columns (POSIXct,ordered,Date) instead of a deparsed vector. - Loading a
.rdafile with several objects, or a file that is not an.rda, now errors with the file name and the reason instead of documenting the first object or crashing.
-
Fixed
setup_readme()no longer writes a dead license link. The README template carried the package name placeholder in URL encoded form, so whisker never substituted it and every generated README linked to.../%7B%7B%7Bpackagename%7D%7D%7D/blob/main/LICENSE.md(#101).update_citation()addsCITATION.cffto.Rbuildignore, soR CMD checkno longer reports a non-standard file at the top level of the data package. cffr only adds the entry itself when handed a file path, and washr hands it a cff object (#102).
Removed
update_gsheet_metadata()is removed. It appended a row to a private openwashdata Google Sheet, needed interactive Google authentication, and never shipped on CRAN. googlesheets4 leaves Imports with it. The catalogue update becomes org-internal tooling outside the package (#69).The dataspice helpers are removed:
add_metadata(),add_creator(),update_access(),update_attributes()andupdate_biblio(). None of them shipped on CRAN.update_metadata()replaced their output, and a package that still carriesdata/metadata/keeps it; washr ignores the folder.fill_dictionary()andgenerate_roxygen_docs()are no longer exported;setup_dictionary()andsetup_roxygen()call them. The export surface is now nine functions. dataspice, dplyr, readr, stringr and tibble leave Imports with the removed code (#71, #100, #72).
Dependencies
- devtools moves from Imports to Suggests.
update_citation()still rebuilds README.md throughdevtools::build_readme(), because the README loads the data package, and asks to install devtools when it is missing; the site rebuild callspkgdown::build_site()directly.setup_website()no longer renders the example article on its own, since the site build renders it. The version constraint on utils is dropped; utils is a base package and the constraint silently required R 4.3.3. With the seven packages removed by the FAIR layer work, Imports go from 16 to 10 (#72).
Documentation and tests
Test bar (#75). Every export has a behavioral test that asserts on file content or output; every
expect_error()names its message; thesetup_rawdata()tests check the rendered template. A test coverage workflow measures coverage on every push and pull request and writes it to the job summary.Documentation (#76). The Get started vignette walks through the workflow in the order of the publishing guide, one function per step; the README gives the toolkit overview with the stable core and the experimental FAIR layer, and carries the CRAN status badge; every export names its neighbours in the workflow under See also; the reference index is grouped by workflow stage; and the pkgdown site URL points at the openwashdata organisation (it pointed at the dev fork, which broke canonical links).
washr 1.0.2
CRAN release: 2026-07-26
Patch release: bug fixes only, no new API. New maintainer: Lars Schöbitz.
-
update_citation()no longer requires adoiargument; calling it without one generates the citation files without a DOI, for use before a release exists (#57). -
update_citation(doi = NULL)no longer injects a broken empty DOI badge into README.Rmd. Re-running with a DOI replaces an existing badge instead of duplicating it, heals a broken empty badge left by earlier versions, and a missing<!-- badges: end -->marker now gives a clear error (#58). -
update_description()preserves existingURLandConfig/Needs/websiteentries and merges them with the openwashdata defaults instead of replacing them (#59, #63). -
update_description()no longer overwrites an existing license; CC BY 4.0 is only set when the package has no license yet (#63). -
update_description()honors itsfileargument when checking for the DESCRIPTION file (#63). -
update_citation()cleans up the*.bk1backup files that cffr leaves behind when overwritingCITATION.cffandinst/CITATION(#60). -
setup_readme()no longer deletes an existing README.Rmd; it stops with an error unless the newforce = TRUEargument is passed (#64).