diff options
-rw-r--r-- | ChangeLog.rst | 6 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
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' |