summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog14
-rw-r--r--gitlab/__init__.py2
2 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 76932e3..e769d16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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'