Skip to content

Commit

Permalink
Merge branch 'release/v0.27.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ja573 committed Oct 18, 2024
2 parents f3b0001 + 975e122 commit 7ba67ec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Install is either via pip or cloning the repository.

From pip:
```sh
python3 -m pip install thothlibrary==0.26.2
python3 -m pip install thothlibrary==0.27.0
```

Or from the repo:
Expand Down
2 changes: 1 addition & 1 deletion thothlibrary/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""GraphQL client for Thoth"""

__version__ = "0.26.2"
__version__ = "0.27.0"
__author__ = "Javier Arias <[email protected]>"
__copyright__ = "Copyright (c) 2020 Open Book Publishers"
__license__ = "Apache 2.0"
Expand Down
6 changes: 4 additions & 2 deletions thothlibrary/mutation.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ class ThothMutation():
("coverCaption", True),
("firstPage", True),
("lastPage", True),
("pageInterval", True)
("pageInterval", True),
("withdrawnDate", True)
],
"return_value": "workId"
},
Expand Down Expand Up @@ -277,7 +278,8 @@ class ThothMutation():
("coverCaption", True),
("firstPage", True),
("lastPage", True),
("pageInterval", True)
("pageInterval", True),
("withdrawnDate", True)
],
"return_value": "workId"
},
Expand Down
4 changes: 4 additions & 0 deletions thothlibrary/thoth-0_9_0/fixtures/QUERIES
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@
"imprintId",
"doi",
"publicationDate",
"withdrawnDate",
"place",
"pageCount",
"pageBreakdown",
Expand Down Expand Up @@ -434,6 +435,7 @@
"imprintId",
"doi",
"publicationDate",
"withdrawnDate",
"place",
"pageCount",
"pageBreakdown",
Expand Down Expand Up @@ -475,6 +477,7 @@
"imprintId",
"doi",
"publicationDate",
"withdrawnDate",
"place",
"pageCount",
"pageBreakdown",
Expand Down Expand Up @@ -514,6 +517,7 @@
"imprintId",
"doi",
"publicationDate",
"withdrawnDate",
"place",
"pageCount",
"pageBreakdown",
Expand Down

0 comments on commit 7ba67ec

Please sign in to comment.