Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/bibx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"read_wos",
]

__version__ = "0.9.0"
__version__ = "0.9.1"


def query_openalex(
Expand Down
4 changes: 2 additions & 2 deletions src/bibx/clients/openalex.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AuthorPosition(Enum):
class Author(BaseModel):
"""An author from the openalex API."""

id: str
id: str | None = None
display_name: str
orcid: str | None = None

Expand Down Expand Up @@ -80,7 +80,7 @@ class Work(BaseModel):
ids: dict[str, str]
doi: str | None = None
title: str | None = None
publication_year: int
publication_year: int | None = None
authorships: list[WorkAuthorship]
cited_by_count: int
keywords: list[WorkKeyword]
Expand Down
Loading