summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog.rst12
-rw-r--r--gitlab/__init__.py2
3 files changed, 16 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 9a11b3c..d95dad8 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -20,6 +20,7 @@ Asher256@users.noreply.github.com <Asher256>
Christian <cgumpert@users.noreply.github.com>
Christian Wenk <christian.wenk@omicronenergy.com>
Colin D Bennett <colin.bennett@harman.com>
+Cosimo Lupo <cosimo.lupo@daltonmaag.com>
Crestez Dan Leonard <lcrestez@ixiacom.com>
Daniel Kimsey <dekimsey@ufl.edu>
derek-austin <derek.austin35@mailinator.com>
@@ -35,6 +36,7 @@ Ian Sparks <isparks@mdsol.com>
itxaka <itxakaserrano@gmail.com>
Ivica Arsov <ivica.arsov@sculpteo.com>
James (d0c_s4vage) Johnson <james.johnson@exodusintel.com>
+Jamie Bliss <astronouth7303@gmail.com>
James E. Flemer <james.flemer@ndpgroup.com>
James Johnson <d0c.s4vage@gmail.com>
Jason Antman <jason@jasonantman.com>
@@ -50,6 +52,7 @@ Michal Galet <michal.galet@gmail.com>
Mikhail Lopotkov <ms.lopotkov@tensor.ru>
Missionrulz <missionrulz@gmail.com>
Mond WAN <mondwan@users.noreply.github.com>
+Nathan Giesbrecht <NathanGiesbrecht@users.noreply.github.com>
pa4373 <pa4373@gmail.com>
Patrick Miller <patrick@velocitywebworks.com>
Peng Xiao <xiaoquwl@gmail.com>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 306a730..a72ac6f 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,17 @@
ChangeLog
=========
+Version 0.21.2_ - 2017-06-11
+----------------------------
+
+* Install doc: use sudo for system commands
+* [v4] Make MR work properly
+* Remove extra_attrs argument from _raw_list
+* [v4] Make project issues work properly
+* Fix urlencode() usage (python 2/3) (#268)
+* Fixed spelling mistake (#269)
+* Add new event types to ProjectHook
+
Version 0.21.1_ - 2017-05-25
----------------------------
@@ -423,6 +434,7 @@ Version 0.1 - 2013-07-08
* Initial release
+.. _0.21.2: https://github.com/python-gitlab/python-gitlab/compare/0.21.1...0.21.2
.. _0.21.1: https://github.com/python-gitlab/python-gitlab/compare/0.21...0.21.1
.. _0.21: https://github.com/python-gitlab/python-gitlab/compare/0.20...0.21
.. _0.20: https://github.com/python-gitlab/python-gitlab/compare/0.19...0.20
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index 4adc563..97e937d 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -35,7 +35,7 @@ from gitlab.exceptions import * # noqa
from gitlab.v3.objects import * # noqa
__title__ = 'python-gitlab'
-__version__ = '0.21.1'
+__version__ = '0.21.2'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'