summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-05-25 07:01:53 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2017-05-25 07:01:53 +0200
commit3ff7d9b70e8bf464706ab1440c87db5aba9c418f (patch)
treef308417b5ecaab75224a5b660ecd1f01b01cbf15
parentd75e565ca0d4bd44e0e0f4a108e3648e21f799b5 (diff)
downloadgitlab-3ff7d9b70e8bf464706ab1440c87db5aba9c418f.tar.gz
Prepare the 0.21.1 release
-rw-r--r--ChangeLog.rst6
-rw-r--r--gitlab/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 6d313d6..6e1bc14 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,11 @@
ChangeLog
=========
+Version 0.21.1_ - 2017-05-25
+----------------------------
+
+* Fix the manager name for jobs in the Project class
+
Version 0.21_ - 2017-05-24
--------------------------
@@ -417,6 +422,7 @@ Version 0.1 - 2013-07-08
* Initial release
+.. _0.21.1: https://github.com/python-gitlab/python-gitlab/compare/0.21...0.21.1
.. _0.21: https://github.com/python-gitlab/python-gitlab/compare/0.20...0.21
.. _0.20: https://github.com/python-gitlab/python-gitlab/compare/0.19...0.20
.. _0.19: https://github.com/python-gitlab/python-gitlab/compare/0.18...0.19
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index db96ab3..e6024a8 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -35,7 +35,7 @@ from gitlab.exceptions import * # noqa
from gitlab.v3.objects import * # noqa
__title__ = 'python-gitlab'
-__version__ = '0.21'
+__version__ = '0.21.1'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'