Skip to content

Commit abe567d

Browse files
authored
Update __init__.py
1 parent 9561b81 commit abe567d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from gitlab.objects import * # noqa
3535

3636
__title__ = 'python-gitlab'
37-
__version__ = '0.20'
37+
__version__ = '0.20.1'
3838
__author__ = 'Gauvain Pocentek'
3939
__email__ = 'gauvain@pocentek.net'
4040
__license__ = 'LGPL3'
@@ -71,7 +71,7 @@ def __init__(self, url, private_token=None, email=None, password=None,
7171
ssl_verify=True, http_username=None, http_password=None,
7272
timeout=None):
7373

74-
self._url = '%s/api/v3' % url
74+
self._url = '%s/api/v4' % url
7575
#: Timeout to use for requests to gitlab server
7676
self.timeout = timeout
7777
#: Headers that will be used in request to GitLab

0 commit comments

Comments
 (0)