summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-09-07 21:36:27 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2017-09-07 21:36:32 +0200
commit670217d4785f52aa502dce6c9c16a3d581a7719c (patch)
tree464337958326dae5305e5597e92ac7534397066e /gitlab
parentd0e2a1595c54a1481b8ca8a4de6e1c12686be364 (diff)
downloadgitlab-670217d4785f52aa502dce6c9c16a3d581a7719c.tar.gz
Switch the version to 1.0.0
The v4 API breaks the compatibility with v3 (at the python-gitlab level), but I believe it is for the greater good. The new code is way easier to read and maintain, and provides more possibilities. The v3 API will die eventually.
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index 644a784..e94c6b2 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -34,7 +34,7 @@ from gitlab.exceptions import * # noqa
from gitlab.v3.objects import * # noqa
__title__ = 'python-gitlab'
-__version__ = '0.21.2'
+__version__ = '1.0.0'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'