- drop
RefManageR
from package Imports as it will likely be archived soon - add packagebibtex
to Suggests for reading/writing bibtex (can't be in Imports because it's Orphaned on CRAN) (#22)
- handlr gains support for Citation File Format (CFF), "plain text files with human- and machine-readable citation information for software". See https://citation-file-format.github.io/ for more info - new functions:
cff_reader()
andcff_writer()
and associated changes inHandlrClient
. Associated with CFF support, handlr gains new Import packageyaml
(#16)
- improvements to Citeproc parsing: previously dropped many fields that we didn't support; now including all Citeproc fields that we don't specifically parse into extra fields prefixed with
csl_
(#20) - nothing changed, but see discussion of bibtex errors in case you run into them (#9)
- gains function
handl_to_df()
; converts anyhandl
object (output fromHandlClient
or any*_reader()
functions) to a data.frame for easier downstream data munging;HandlClient
gains$as_df()
method which runshandl_to_df()
; to support this, now importing data.table package (#15) (#19) feature request by @GeraldCNelson
- now exporting the
print.handl
method. it only affects how ahandl
class object prints in the console, but is useful for making output more brief/concise (#14) - filled out a lot more details of what a
handl
object contains. see?handl
for the documentation (#17)
- Released to CRAN