Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## v0.10.1 (2025-10-24)

* Support LK, M2, U2-U4 fields in RIS

## v0.10.0 (2025-05-23)

* Improve performance of rispy's parser and refactor parser
Expand Down
2 changes: 1 addition & 1 deletion rispy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .parser import RisParser, WokParser, load, loads
from .writer import BaseWriter, RisWriter, dump, dumps

__version__ = "0.10.0"
__version__ = "0.10.1"

__all__ = [
"LIST_TYPE_TAGS",
Expand Down
5 changes: 5 additions & 0 deletions rispy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@
"L4": "figure",
"LA": "language",
"LB": "label",
"LK": "website_link",
"M1": "note",
"M2": "miscellaneous_2",
"M3": "type_of_work",
"N1": "notes", # ListType
"N2": "notes_abstract",
Expand All @@ -75,6 +77,9 @@
"TA": "translated_author",
"TI": "title",
"TT": "translated_title",
"U2": "user_defined_2",
"U3": "user_defined_3",
"U4": "user_defined_4",
"UR": "urls", # ListType
"VL": "volume",
"Y1": "publication_year",
Expand Down