summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog20
-rw-r--r--gitlab/__init__.py2
2 files changed, 21 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0baeb35..04736cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+Version 0.15
+
+ * Add a basic HTTP debug method
+ * Run more tests in travis
+ * Fix fork creation documentation
+ * Add more API examples in docs
+ * Update the ApplicationSettings attributes
+ * Implement the todo API
+ * Add sidekiq metrics support
+ * Move the constants at the gitlab root level
+ * Remove methods marked as deprecated 7 months ago
+ * Refactor the Gitlab class
+ * Remove _get_list_or_object() and its tests
+ * Fix canGet attribute (typo)
+ * Remove unused ProjectTagReleaseManager class
+ * Add support for project services API
+ * Add support for project pipelines
+ * Add support for access requests
+ * Add support for project deployments
+
Version 0.14
* Remove 'next_url' from kwargs before passing it to the cls constructor.
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index 61192f4..5f72d0d 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -33,7 +33,7 @@ from gitlab.exceptions import * # noqa
from gitlab.objects import * # noqa
__title__ = 'python-gitlab'
-__version__ = '0.14'
+__version__ = '0.15'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'