diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-23 10:01:36 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-23 10:01:36 +0200 |
commit | 5e6330f82b121a4d7772f4083dd94bdf9a6d915d (patch) | |
tree | d74b110a555deb880a2a4367596eca2fcf87ceff | |
parent | 590c41ae5030140ea16904d22c15daa3a9ffd374 (diff) | |
download | gitlab-5e6330f82b121a4d7772f4083dd94bdf9a6d915d.tar.gz |
1.5.1 release1.5.1
-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 a9cb516..5b2c497 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,11 @@ ChangeLog ========= +Version 1.5.1_ - 2018-06-23 +--------------------------- + +* Fix the ProjectPipelineJob base class (regression) + Version 1.5.0_ - 2018-06-22 --------------------------- @@ -638,6 +643,7 @@ Version 0.1 - 2013-07-08 * Initial release +.. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.1 .. _1.5.0: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.0 .. _1.4.0: https://github.com/python-gitlab/python-gitlab/compare/1.3.0...1.4.0 .. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.2.0...1.3.0 diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 0c69a99..1c13093 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -30,7 +30,7 @@ from gitlab.const import * # noqa from gitlab.exceptions import * # noqa __title__ = 'python-gitlab' -__version__ = '1.5.0' +__version__ = '1.5.1' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |