Skip to content

v4.0.0

Compare
Choose a tag to compare
@customcommander customcommander released this 06 May 20:46
· 76 commits to master since this release

4.0.0 (2021-05-06)

Features

  • add support for initials in names, TA is now a name record. (75972b0)
  • implement RIS.toMendeley to convert bibliographic records to (494098f)

BREAKING CHANGES

  • e.g. the following entry:

AU - Doe, Tom Jack T.J.

now yields:

{ "last_name": "Doe"
, "first_name": "Tom Jack"
, "initials": "T.J."
, "suffix": "" }

instead of (previously):

{ "last_name": "Doe"
, "first_name": "Tom Jack T.J."
, "suffix": "" }

Second breaking change:

TA - Doe, Jane

TA entries were previously treated as regular strings.
They are now parsed as holding people names,
similar to AU, A1-4 entries.