Skip to content

Commit

Permalink
release: v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsherva committed Oct 11, 2023
1 parent 6bcdf20 commit 8dcf10b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
Changes
=======

Version v1.0.4 (released 2023-10-11)

- api: remove catch all block on contributors of release

Version v1.0.3 (released 2023-10-11)

- view: fix badge fetch by PID
Expand Down
2 changes: 1 addition & 1 deletion invenio_github/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@

from .ext import InvenioGitHub

__version__ = "1.0.3"
__version__ = "1.0.4"

__all__ = ("__version__", "InvenioGitHub")
1 change: 1 addition & 0 deletions invenio_github/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ def contributors(self):
).contributors()
contributors = list(contributors_iter)
if contributors_iter.last_status == 200:

def get_author(contributor):
r = requests.get(contributor["url"])
if r.status_code == 200:
Expand Down

0 comments on commit 8dcf10b

Please sign in to comment.