rapport 0.51 (2013-05-06)
----------------------------------------------------------------

CHANGES

  * matchable inputs do not use `match.arg` for matching any more. Instead, a simple `%in%` with indexing is used, so exact match is required.
  * `value` attribute is not used to store values that you choose from - `options` attribute is used instead, with `value` holding the (default) value(s) from the `options` list.
  * new attribute `allow_multiple` was introduced in matchable inputs. If `TRUE`, it will allow one to match values from `options` list multiple times. Defaults to `FALSE`.
  * for factor matchable inputs, matching is not performed on factor levels, but on values (just like in character inputs).


rapport 0.5 (2013-02-18)
----------------------------------------------------------------

TEMPLATE HEADER SPECIFICATION

  * Template header specification is rewritten. Custom cumbersome syntax is no more, and the header content is 100% pure YAML. See `?tpl.meta` and `?tpl.inputs` for details on new metadata and input specification.
  * Input specification relies on R class system, and the old one is deprecated (though kept for backwards compatibility). Only atomic vector classes are currently supported: `character`, `complex`, `integer`, `logical`, `numeric` and `raw`.
  * More robust `length` checks are manageable via `exactly` and `min`/`max` attributes.
  * `option` inputs are removed. You should use `matchable` attribute in `character` and `factor` inputs instead. Multiple matches are now allowed.
  * `boolean`, `string` and `number` inputs are removed and `logical`, `character` and `numeric` are to be used instead, respectively.
  * Added `integer` and `raw` inputs.
  * Fine-tune control over inputs is achieved via class-specific options that resemble native R object methods and/or attributes, e.g. `nlevels` for factors, or `nchar` for character vectors.

CHANGES

  * Added `yaml` package to dependencies.
  * `tpl.inputs` and `tpl.meta` will now perform validation of inputs and metadata, respectively. Warnings are issued if unsupported fields are found.
  * `dataRequired` metadata attribute is deprecated. Dataset is required if the template contains non-standalone inputs (see `?tpl.inputs` for details).

BUGFIXES

  * Duplicate input names are not allowed in the templates.
  * `is.empty` now returns `TRUE` for zero-length objects.

YAML INPUT SPECIFICATION

rapport 0.4 (2012-08-04)
----------------------------------------------------------------

CHANGES

  * removed `ascii` and `evaluate` packages and introduced `pander`

    This was a quite big change in the backend which resulted in some removed functions of prior version.
    For example `tpl.tangle` is dropped temporarily and most of the custom options were moved to
    `panderOptions()` and `evalsOptions()` from `pander` package.

  * the repository was moved to Rapporter's organisation GH account from @aL3xa

rapport 0.33
----------------------------------------------------------------

NEW FEATURES

 * towards method/class-based reporting (issue #42)

CHANGES

 * removing most packages from 'Depends' and using NAMESPACE imports instead
 * rearrange "templates" directory: subtemplates and internationalized templates goes to separate directories

BUGFIXES

 * typos in templates

rapport 0.32 (2012-02-18)
----------------------------------------------------------------

NEW FEATURES

 * New global options:
    * to specify exported documents and generated images (dynamic) name and path
    * to generate "portable" HTML files
 * raw pandoc/asciidoc etc. outputs are also saved with appropriate extension

CHANGES

 * removing `makes.plot` function
 * performance boost in `rp.prettyascii` (rounding)
 * `tpl.export` returns the generated document's filename
 * tweaks in `htest`

BUGFIXES

 * fixed: deadlinks in exported documents to Rapport homepage
 * fixed: NULL-indexing bug in tpl.meta

rapport 0.31 (2012-02-08)
----------------------------------------------------------------

This is a hotfix release:
 * fixed .onLoad/windowsFont call error
 * fixed #47 (https://github.com/rapporter/rapport/issues/36) of custom RefClassField
 * removed `RJSONIO` dependency (just like: `table.json` function)
 * small documentation and CSS tweaks

rapport 0.3 (2012-02-07)
----------------------------------------------------------------

NEW FEATURES

* Introduced own `skewness()` and `kurtosis()` functions to get rid of `moments` dependency.
* Option (default set to FALSE) to view generated plots without exporting (`replayPlot`)
* Same option let users resize generated (and saved) images on the fly while printing rapport classes
  and later exporting

CHANGES

* Removed `moments` and `latticeExtra` from package dependencies.
* Updated demo
* `rapport()` will now check for packages specified in the template header and throw error if
  something goes wrong while loading.
* `tpl.example` now uses `readlines` instead of reading from `stdin` (Windows and Eclipse/StatET bug)
* `tpl.export` now checks if specified backend is installed and throws an error if not.
* Checking if a plot was generated in `evals` is done with the help of `replayPlot` instead of
  file size checks (for OS independence).


BUGFIXES

* Windows path issue
* Windows default grDevice bug with checking if a plot was generated (by checking file size changes)
* Formatting issues with non-pandoc backends

rapport 0.2 (2012-02-04)
----------------------------------------------------------------

Initial CRAN release.