diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-09-03 20:25:41 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-09-03 20:25:41 +0200 |
commit | 90ad2dec7a0b158b2e77ae0cb403b01f2e1498d4 (patch) | |
tree | 0e487ab5ae3ef75fb3bf323428adc55a485f7c42 | |
parent | dc3dcd11f3921929cc13260fbfb13aa3ae5117ce (diff) | |
download | gitlab-0.15.1.tar.gz |
0.15.1 release0.15.1
-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' |