Skip to content

Commit

Permalink
fix journal title in inveniordm writer
Browse files Browse the repository at this point in the history
  • Loading branch information
mfenner committed Mar 3, 2025
1 parent 31ebf6c commit a7ac1bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion commonmeta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"""

__title__ = "commonmeta-py"
__version__ = "0.83"
__version__ = "0.84"
__author__ = "Martin Fenner"
__license__ = "MIT"

Expand Down
2 changes: 1 addition & 1 deletion commonmeta/writers/inveniordm_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def write_inveniordm(metadata):
journal = (
container.get("title", None)
if _type not in ["inbook", "inproceedings"]
and container.get("type") in ["Journal", "Periodical"]
and container.get("type") in ["Journal", "Periodical", "Blog"]
else None
)
issn = (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "commonmeta-py"
version = "0.83"
version = "0.84"
description = "Library for conversions to/from the Commonmeta scholarly metadata format"
authors = [{ name = "Martin Fenner", email = "[email protected]" }]
requires-python = ">=3.9,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a7ac1bd

Please sign in to comment.