From abe567d7152e73330025d946e5876aaa93610563 Mon Sep 17 00:00:00 2001 From: Igor Malinovskiy Date: Wed, 3 May 2017 18:16:18 +0300 Subject: [PATCH] Update __init__.py --- gitlab/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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