Skip to content

Commit

Permalink
include "firstAuthor" for creators
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 committed Oct 28, 2024
1 parent a9718d8 commit 8524d45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylobid/pylobid.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def creators(self) -> list:
list: _description_
"""
creators = []
for y in ["author", "firstComposer", "librettist"]:
for y in ["firstAuthor", "author", "firstComposer", "librettist"]:
for x in self.ent_dict.get(y, []):
x["role"] = y
creators.append(x)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pylobid"
version = "2.1.0"
version = "2.1.1"
description = "A lobid-REST-API client"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down

0 comments on commit 8524d45

Please sign in to comment.