From fbf7dc46962beef031c309c01e1716a15b0d35ab Mon Sep 17 00:00:00 2001 From: Brendan OConnell Date: Fri, 8 Mar 2024 10:36:03 +0100 Subject: [PATCH 1/2] Added issues-->issueOrdinal to series query --- thothlibrary/thoth-0_9_0/fixtures/QUERIES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thothlibrary/thoth-0_9_0/fixtures/QUERIES b/thothlibrary/thoth-0_9_0/fixtures/QUERIES index cb2c117..ac73f73 100644 --- a/thothlibrary/thoth-0_9_0/fixtures/QUERIES +++ b/thothlibrary/thoth-0_9_0/fixtures/QUERIES @@ -334,7 +334,7 @@ "createdAt", "imprintId", "imprint { __typename publisher { publisherName publisherId __typename } }", - "issues { issueId work { workId fullTitle doi publicationDate place contributions { fullName contributionType mainContribution contributionOrdinal } } }", + "issues { issueId issueOrdinal work { workId fullTitle doi publicationDate place contributions { fullName contributionType mainContribution contributionOrdinal } } }", "__typename" ] }, From 69bf06f2e7e585bce4038333fe8f3f3d6a399b68 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Fri, 8 Mar 2024 15:45:36 +0000 Subject: [PATCH 2/2] Bump v0.25.0 --- README.md | 2 +- thothlibrary/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8a280d3..82e3c76 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Install is either via pip or cloning the repository. From pip: ```sh -python3 -m pip install thothlibrary==0.24.0 +python3 -m pip install thothlibrary==0.25.0 ``` Or from the repo: diff --git a/thothlibrary/__init__.py b/thothlibrary/__init__.py index 6724abf..f5a1e70 100644 --- a/thothlibrary/__init__.py +++ b/thothlibrary/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """GraphQL client for Thoth""" -__version__ = "0.24.0" +__version__ = "0.25.0" __author__ = "Javier Arias " __copyright__ = "Copyright (c) 2020 Open Book Publishers" __license__ = "Apache 2.0"