summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS5
-rw-r--r--ChangeLog.rst17
-rw-r--r--gitlab/__init__.py2
3 files changed, 23 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index d01d578..c5aafbf 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -8,6 +8,7 @@ Contributors
------------
Adam Reid <areid@navtech.aero>
+Alexander Skiba <mail@ghostlyrics.net>
Alex Widener <alexwidener@users.noreply.github.com>
Amar Sood (tekacs) <mail@tekacs.com>
Andjelko Horvat <ahorvat@reflected.net>
@@ -23,6 +24,7 @@ Crestez Dan Leonard <lcrestez@ixiacom.com>
Daniel Kimsey <dekimsey@ufl.edu>
derek-austin <derek.austin35@mailinator.com>
Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br>
+Dmytro Litvinov <litvinov.do.it@gmail.com>
Erik Weatherwax <erik.weatherwax@xls.xerox.com>
fgouteroux <francois.gouteroux@d2-si.eu>
Greg Allen <GregoryEAllen@users.noreply.github.com>
@@ -33,6 +35,7 @@ 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>
+Johan Brandhorst <johan@cognitivelogic.com>
Jonathon Reinhart <Jonathon.Reinhart@gmail.com>
Koen Smets <koen.smets@gmail.com>
Kris Gambirazzi <Kris@sitehost.co.nz>
@@ -42,6 +45,7 @@ Matt Odden <locke105@gmail.com>
Michal Galet <michal.galet@gmail.com>
Mikhail Lopotkov <ms.lopotkov@tensor.ru>
Missionrulz <missionrulz@gmail.com>
+Mond WAN <mondwan@users.noreply.github.com>
pa4373 <pa4373@gmail.com>
Patrick Miller <patrick@velocitywebworks.com>
Peng Xiao <xiaoquwl@gmail.com>
@@ -51,6 +55,7 @@ Philipp Busch <philipp.busch@momox.biz>
Rafael Eyng <rafaeleyng@gmail.com>
Richard Hansen <rhansen@rhansen.org>
samcday <sam.c.day@gmail.com>
+savenger <github@smahmood.de>
Stefan K. Dunkler <stefan.dun@gmail.com>
Stefan Klug <klug.stefan@gmx.de>
Stefano Mandruzzato <stefano.mandruzzato@gmail.com>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 8e141d1..00663e7 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,22 @@
ChangeLog
=========
+Version 0.20_ - 2017-03-25
+---------------------------
+
+* Add time tracking support (#222)
+* Improve changelog (#229, #230)
+* Make sure that manager objects are never overwritten (#209)
+* Include chanlog and release notes in docs
+* Add DeployKey{,Manager} classes (#212)
+* Add support for merge request notes deletion (#227)
+* Properly handle extra args when listing with all=True (#233)
+* Implement pipeline creation API (#237)
+* Fix spent_time methods
+* Add 'delete source branch' option when creating MR (#241)
+* Provide API wrapper for cherry picking commits (#236)
+* Stop listing if recursion limit is hit (#234)
+
Version 0.19_ - 2017-02-21
---------------------------
@@ -381,6 +397,7 @@ Version 0.1 - 2013-07-08
* Initial release
+.. _0.20: https://github.com/gpocentek/python-gitlab/compare/0.19...0.20
.. _0.19: https://github.com/gpocentek/python-gitlab/compare/0.18...0.19
.. _0.18: https://github.com/gpocentek/python-gitlab/compare/0.17...0.18
.. _0.17: https://github.com/gpocentek/python-gitlab/compare/0.16...0.17
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index 421b9eb..1db03b0 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.19'
+__version__ = '0.20'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'