Releases: customcommander/ris
Releases · customcommander/ris
v5.1.2
v5.1.1
v5.1.0
v5.0.0
5.0.0 (2021-09-01)
Features
- release new parser (998c6d9)
BREAKING CHANGES
- This changes the parser to support any tags
as long as they are correctly formatted.
All tags are put into arrays.
The ER tag is allowed to miss the trailing space
after the dash.
Special formatting rules for some tags are
supported but not enforced.
Other changes include
-
There is no default export anymore.
To parse content call the parser function. -
Log a message instead of throwing an exception
when content cannot be parsed.
v4.1.2
v4.1.1
v4.1.0
v4.0.1
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.