Skip to content

Commit

Permalink
v3.1.1 (#167)
Browse files Browse the repository at this point in the history
* Write Universe metadata to MetronInfo.xml (#166)
* Update dependencies.
* Bump version to 3.1.1
  • Loading branch information
bpepple authored Dec 10, 2024
1 parent f6d7639 commit 400e12c
Show file tree
Hide file tree
Showing 6 changed files with 182 additions and 177 deletions.
2 changes: 1 addition & 1 deletion metrontagger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Projects version information used in setup.py."""

__version__ = "3.1.0"
__version__ = "3.1.1"
3 changes: 3 additions & 0 deletions metrontagger/talker.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
Publisher,
Role,
Series,
Universe,
)
from darkseid.utils import get_issue_id_from_note
from imagehash import ImageHash, hex_to_hash, phash
Expand Down Expand Up @@ -636,6 +637,8 @@ def map_ratings(rating: str) -> AgeRatings:
md.genres = create_resource_list(resp.series.genres)
if resp.reprints:
md.reprints = [Basic(r.issue, r.id) for r in resp.reprints]
if resp.universes:
md.universes = [Universe(uni.name, uni.id) for uni in resp.universes]
if resp.credits:
md = add_credits_to_metadata(md, resp.credits)
if resp.rating:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.1.0",
"version": "3.1.1",
"description": "metron-tagger linting",
"type": "module",
"scripts": {
Expand Down
Loading

0 comments on commit 400e12c

Please sign in to comment.