Skip to content

Releases: KentonWhite/ProjectTemplate

v0.10.4

19 Nov 17:01
Compare
Choose a tag to compare

0.10.4 (2023-11-19)

Internal

  • Added documentation sentinel file ProjectTemplate-package

0.10.2

30 Jul 16:04
Compare
Choose a tag to compare

0.10.2 (2021-07-30)

Internal

  • Fix pattern not intended for file extensions like qs.hash
  • Skip tests using suggested packages that are not installed

0.10.1

08 Feb 21:15
Compare
Choose a tag to compare

0.10.1 (2021-02-08)

Features

  • Support for multiple loggin directores
  • Support for multiple munge directories
  • Support for list of munge files

0.10.0

08 Jan 17:21
Compare
Choose a tag to compare

0.10.0 (2021-01-08)

Features

  • Support qs cache format in addition to rdata (#304)

Documentation

  • Added documentation for underscore_variables in project.config.R (#306)

0.9.3

03 Dec 20:06
d1d92ed
Compare
Choose a tag to compare

0.9.3 (2020-12-03)

Internal

  • Fix passing first argument with length greater than 1 to exists() (Breaking change in R 4.1.0)
  • Fix issue where some Namespaces where not properly resolved in cache() (#303).

0.9.2

11 May 20:51
Compare
Choose a tag to compare

0.9.2 (2020-05-11)

Features

  • Supports underscores in variable names, replacing the old dot ('.') separator.

0.9.1

15 Apr 18:33
Compare
Choose a tag to compare

as_factor default is FALSE for R 4.0

0.9.0

26 Feb 19:00
Compare
Choose a tag to compare

0.9.0 (2019-02-26)

Features

  • New for R 3.6, support for staged install (#291)
  • Define default table types using config var tables_type (#274)
  • Support for feather files (#239)
  • Migration from csv2.reader to read.csv2 (#195)
  • Supports rstudio.project files (#201)

Documentation

  • Link website documentation current release to News.md
  • Added file types to dat directory README (#268)
  • Internal functions are now documenter (#243)

Internal

  • data_ignore applies to cache vars (#290)
  • More informative error messages if not in a ProjectTemplate Directory (#287)
  • migrate_project() creates missing cache directory (#275)

0.8.2

20 Apr 16:05
Compare
Choose a tag to compare

0.8.2 (2018-04-20)

Features

  • Uses the Tidyverse packages (#207)
  • Added custom templates (#206)
  • Added support for rds files (#224, #227)

Documentation

  • Documentation moved to docs folder. Will automatically update on website

Internal

  • Added tibble support (#218)
  • Moved from xls package to readxl package (#159, #219)
  • Allow overridng of globals (#222)
  • Fixed failing test for RSQLlite package (#228)

v0.8.1: Fixed compatibility with external readers

29 Aug 00:39
Compare
Choose a tag to compare
Exteranl readers use function closures as their reader.  These need to
be stored in the reader list as closures.

Changed the reader vector to a list that can hold closures

Store closures in readers list

Coerce closures into lists

Set reader after dataframe is created

Treat readers from list.data as lists

Keep duplicated variable names

Fixed incorrect check if reader exists

Cleanup debug messages

Clean up tests

Final fix of the has reader condition