Changelog
Source:NEWS.md
tidygapminder 1.0.0
CRAN release: 2026-05-16
Breaking changes
-
tidy_bunch(): themergeparameter has been renamed tocombineto avoid shadowingbase::merge(). Update any existing calls accordingly. -
tidy_indice()is deprecated in favour of the correctly spelledtidy_index(). It still works but will emit a deprecation warning. It will be removed in a future release.
New features
-
tidy_index()andtidy_bunch()now return tibbles instead of plain data frames. -
tidy_bunch()now returns a named list (named after each indicator file) whencombine = FALSE. -
tidy_bunch()now supports.xlsfiles in addition to.csvand.xlsx. - Both functions now emit informative error messages for missing files, missing directories, unsupported file extensions, and empty directories.
- Year coercion to numeric now emits a warning if any values cannot be converted.
Internal changes
- Migrate CI from Travis/AppVeyor to GitHub Actions.
- Drop support for R < 4.1.0.
- Upgrade to testthat 3rd edition with expanded test coverage.
- Replace
readr::read_csv()with baseread.csv()andtidyr::pivot_longer()with basereshape(), removing bothreadrandtidyrfrom dependencies. Package now depends only onreadxlandtibble. - pkgdown site upgraded to Bootstrap 5.
tidygapminder 0.1.1
CRAN release: 2020-02-04
- Fix a bug in merging list of data frames in
tidy_bunch().
tidygapminder 0.1.0
CRAN release: 2019-12-06
- First release, with
tidy_indice()andtidy_bunch()functions.