summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--gitlab.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 33cafd2..b9766ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,13 @@ Version 0.5
* Add SSH key for user
* Fix comments
* Add support for project events
+ * Support creation of projects for users
+ * Project: add methods for create/update/delete files
+ * Support projects listing: search, all, owned
+ * System hooks can't be updated
+ * Project.archive(): download tarball of the project
+ * Define new optional attributes for user creation
+ * Provide constants for access permissions in groups
Version 0.4
diff --git a/gitlab.py b/gitlab.py
index 370c224..f827a5b 100644
--- a/gitlab.py
+++ b/gitlab.py
@@ -21,7 +21,7 @@ import requests
import sys
__title__ = 'python-gitlab'
-__version__ = '0.4'
+__version__ = '0.5'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'