diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Version 0.15.1 + + * docs: improve the pagination section + * Fix and test pagination + * 'path' is an existing gitlab attr, don't use it as method argument + Version 0.15 * Add a basic HTTP debug method diff --git a/gitlab/__init__.py b/gitlab/__init__.py index aa0ec1c..fa1927d 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -33,7 +33,7 @@ from gitlab.exceptions import * # noqa from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '0.15' +__version__ = '0.15.1' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |