diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-12-27 15:13:18 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-12-27 15:13:18 +0100 |
commit | 8028ec7807f18c928610ca1be36907bfc4c25f1f (patch) | |
tree | 47efe564d24397488002ca34071d413ad65a1c73 | |
parent | d6c87d956eaaeafe2bd4b0e65b42e1afdf0e10bb (diff) | |
download | gitlab-8028ec7807f18c928610ca1be36907bfc4c25f1f.tar.gz |
prepare the 0.18 release0.18
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
2 files changed, 15 insertions, 1 deletions
@@ -1,3 +1,17 @@ +Version 0.18 + + * Fix JIRA service editing for GitLab 8.14+ + * Add jira_issue_transition_id to the JIRA service optional fields + * Added support for Snippets (new API in Gitlab 8.15) + * [docs] update pagination section + * [docs] artifacts example: open file in wb mode + * [CLI] ignore empty arguments + * [CLI] Fix wrong use of arguments + * [docs] Add doc for snippets + * Fix duplicated data in API docs + * Update known attributes for projects + * sudo: always use strings + Version 0.17 * README: add badges for pypi and RTD diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 679b023..e0051aa 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -34,7 +34,7 @@ from gitlab.exceptions import * # noqa from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '0.17' +__version__ = '0.18' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |