diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 1db03b0ac..b7fc364bd 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -34,7 +34,7 @@ from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '0.20' +__version__ = '0.20.1' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' @@ -71,7 +71,7 @@ def __init__(self, url, private_token=None, email=None, password=None, ssl_verify=True, http_username=None, http_password=None, timeout=None): - self._url = '%s/api/v3' % url + self._url = '%s/api/v4' % url #: Timeout to use for requests to gitlab server self.timeout = timeout #: Headers that will be used in request to GitLab