v4.0.0
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.