diff options
| -rw-r--r-- | ChangeLog.rst | 8 | ||||
| -rw-r--r-- | gitlab/__init__.py | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst index 2ecb7cb..7dbdda6 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,13 @@ ChangeLog ========= +Version 1.0.2_ - 2017-09-29 +--------------------------- + +* [docs] remove example usage of submanagers +* Properly handle the labels attribute in ProjectMergeRequest +* ProjectFile: handle / in path for delete() and save() + Version 1.0.1_ - 2017-09-21 --------------------------- @@ -462,6 +469,7 @@ Version 0.1 - 2013-07-08 * Initial release +.. _1.0.2: https://github.com/python-gitlab/python-gitlab/compare/1.0.1...1.0.2 .. _1.0.1: https://github.com/python-gitlab/python-gitlab/compare/1.0.0...1.0.1 .. _1.0.0: https://github.com/python-gitlab/python-gitlab/compare/0.21.2...1.0.0 .. _0.21.2: https://github.com/python-gitlab/python-gitlab/compare/0.21.1...0.21.2 diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 36a93ed..25b0b86 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__ = '1.0.1' +__version__ = '1.0.2' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |
