diff --git a/Github/__init__.py b/Github/__init__.py index 7a6a611..39b9dec 100644 --- a/Github/__init__.py +++ b/Github/__init__.py @@ -8,4 +8,4 @@ from .exceptions import * __title__ = 'Github-Api-Wrapper' __authors__ = 'VarMonke', 'sudosnok' -__version__ = '1.0.0' \ No newline at end of file +__version__ = '1.0.1' diff --git a/Github/http.py b/Github/http.py index f2c25a7..5aa5fda 100644 --- a/Github/http.py +++ b/Github/http.py @@ -17,8 +17,7 @@ from .exceptions import * from .exceptions import GistNotFound, RepositoryAlreadyExists, MissingPermissions from .objects import APIObject, User, Gist, Repository, Organization, File from .urls import * - -__version__ = '0.0.1' +from . import __version__ __all__ = ( 'Paginator', @@ -287,4 +286,4 @@ class http: return await result.json() if result.status == 401: raise NoAuthProvided - raise RepositoryAlreadyExists \ No newline at end of file + raise RepositoryAlreadyExists