summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog15
-rw-r--r--gitlab/__init__.py4
3 files changed, 21 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 3e38faf..d01d578 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -8,7 +8,10 @@ Contributors
------------
Adam Reid <areid@navtech.aero>
+Alex Widener <alexwidener@users.noreply.github.com>
Amar Sood (tekacs) <mail@tekacs.com>
+Andjelko Horvat <ahorvat@reflected.net>
+Andreas Nüßlein <nutz@noova.de>
Andrew Austin <aaustin@terremark.com>
Armin Weihbold <armin.weihbold@gmail.com>
Asher256 <Asher256@users.noreply.github.com>
@@ -28,6 +31,7 @@ hakkeroid <hakkeroid@users.noreply.github.com>
itxaka <itxakaserrano@gmail.com>
Ivica Arsov <ivica.arsov@sculpteo.com>
James (d0c_s4vage) Johnson <james.johnson@exodusintel.com>
+James Johnson <d0c.s4vage@gmail.com>
Jason Antman <jason@jasonantman.com>
Jonathon Reinhart <Jonathon.Reinhart@gmail.com>
Koen Smets <koen.smets@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index e769d16..14415f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+Version 0.19
+
+ * Update project.archive() docs
+ * Support the scope attribute in runners.list()
+ * Add support for project runners
+ * Add support for commit creation
+ * Fix install doc
+ * Add builds-email and pipelines-email services
+ * Deploy keys: rework enable/disable
+ * Document the dynamic aspect of objects
+ * Add pipeline_events to ProjectHook attrs
+ * Add due_date attribute to ProjectIssue
+ * Handle settings.domain_whitelist, partly
+ * {Project,Group}Member: support expires_at attribute
+
Version 0.18
* Fix JIRA service editing for GitLab 8.14+
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index e0051aa..119dab0 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -34,11 +34,11 @@ from gitlab.exceptions import * # noqa
from gitlab.objects import * # noqa
__title__ = 'python-gitlab'
-__version__ = '0.18'
+__version__ = '0.19'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'
-__copyright__ = 'Copyright 2013-2016 Gauvain Pocentek'
+__copyright__ = 'Copyright 2013-2017 Gauvain Pocentek'
warnings.filterwarnings('default', category=DeprecationWarning,
module='^gitlab')