Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2 KB

CHANGELOG.md

File metadata and controls

82 lines (45 loc) · 2 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

v0.7

Backwards-incompatible changes

  • Remove safe_get, because the dsoParams class already checks for existance of keys

Fixes

  • Improved the read_params function by enforcing the params.yaml to be read as is. "Yes", "No" will not be converted to booleans anymore. Related to issue #22

v0.6

New Features

  • Introduced the repro function that performs dso repro of a single stage with or without its dependencies
  • Introduced the corresponding rstudio addins for the repro function

Fixes

  • Removed ... in reload function

v0.5.1

Improvements

  • Fixed reload() function for dsoParams

v0.5.0

New Features

  • Introduced reload() function for dsoParams

v0.4.4

Improvements

  • Improved error handling for read_params()

v0.4.3

Improvements

  • updated .Rbuildignore ignoring package redundant files
  • added precommit configs
  • included methods show
  • set class of dsoParams object
  • fixed R CMD check warnings

v0.4.2

Improvements

  • Improved compatibility of dsoParams with list operations

v0.4.1

Improvements

  • Improve the readability of dsoParams object using read_params()

v0.4.0

New Features

  • Introduction of dsoParams class which is automatically returned from read_params() . This list of list type prohibits return of NULL when there is incorrect access, making the use of parameters much safer and stable.
  • Added testthat testing
  • Modified read_params() so that the default return value is dsoParams object, and added an argument that a standard list of lists can be returned.

v0.3.1

New Features

  • Added safe_get function to safely retrieve configuration from list of list calls.
  • Added testing with testthat