In github/GitRelease.py, Line 416-417
if "name" in attributes:
self._title = self._makeStringAttribute(attributes["name"])
The '_name' was assigned the value of '_title' in GitRelease, which makes the 'name' property accessible.
It should be fixed as
if "name" in attributes:
self._name = self._makeStringAttribute(attributes["name"])