summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-09-29 11:12:53 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2017-09-29 11:12:53 +0200
commit9e09cf618a01e2366f2ae7d66874f4697567cfc3 (patch)
treef9a2d7ff6b172a158862577e9f864f30a3c7f6e4
parent05656bbe237707794e9dd1e75e453413c0cf25a5 (diff)
downloadgitlab-9e09cf618a01e2366f2ae7d66874f4697567cfc3.tar.gz
Prepare the 1.0.2 release1.0.2
-rw-r--r--ChangeLog.rst8
-rw-r--r--gitlab/__init__.py2
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'