Skip to content

Commit c545504

Browse files
author
Gauvain Pocentek
committed
Prepare 0.20 release
1 parent 20d6678 commit c545504

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Contributors
88
------------
99

1010
Adam Reid <areid@navtech.aero>
11+
Alexander Skiba <mail@ghostlyrics.net>
1112
Alex Widener <alexwidener@users.noreply.github.com>
1213
Amar Sood (tekacs) <mail@tekacs.com>
1314
Andjelko Horvat <ahorvat@reflected.net>
@@ -23,6 +24,7 @@ Crestez Dan Leonard <lcrestez@ixiacom.com>
2324
Daniel Kimsey <dekimsey@ufl.edu>
2425
derek-austin <derek.austin35@mailinator.com>
2526
Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br>
27+
Dmytro Litvinov <litvinov.do.it@gmail.com>
2628
Erik Weatherwax <erik.weatherwax@xls.xerox.com>
2729
fgouteroux <francois.gouteroux@d2-si.eu>
2830
Greg Allen <GregoryEAllen@users.noreply.github.com>
@@ -33,6 +35,7 @@ Ivica Arsov <ivica.arsov@sculpteo.com>
3335
James (d0c_s4vage) Johnson <james.johnson@exodusintel.com>
3436
James Johnson <d0c.s4vage@gmail.com>
3537
Jason Antman <jason@jasonantman.com>
38+
Johan Brandhorst <johan@cognitivelogic.com>
3639
Jonathon Reinhart <Jonathon.Reinhart@gmail.com>
3740
Koen Smets <koen.smets@gmail.com>
3841
Kris Gambirazzi <Kris@sitehost.co.nz>
@@ -42,6 +45,7 @@ Matt Odden <locke105@gmail.com>
4245
Michal Galet <michal.galet@gmail.com>
4346
Mikhail Lopotkov <ms.lopotkov@tensor.ru>
4447
Missionrulz <missionrulz@gmail.com>
48+
Mond WAN <mondwan@users.noreply.github.com>
4549
pa4373 <pa4373@gmail.com>
4650
Patrick Miller <patrick@velocitywebworks.com>
4751
Peng Xiao <xiaoquwl@gmail.com>
@@ -51,6 +55,7 @@ Philipp Busch <philipp.busch@momox.biz>
5155
Rafael Eyng <rafaeleyng@gmail.com>
5256
Richard Hansen <rhansen@rhansen.org>
5357
samcday <sam.c.day@gmail.com>
58+
savenger <github@smahmood.de>
5459
Stefan K. Dunkler <stefan.dun@gmail.com>
5560
Stefan Klug <klug.stefan@gmx.de>
5661
Stefano Mandruzzato <stefano.mandruzzato@gmail.com>

ChangeLog.rst

+17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
ChangeLog
22
=========
33

4+
Version 0.20_ - 2017-03-25
5+
---------------------------
6+
7+
* Add time tracking support (#222)
8+
* Improve changelog (#229, #230)
9+
* Make sure that manager objects are never overwritten (#209)
10+
* Include chanlog and release notes in docs
11+
* Add DeployKey{,Manager} classes (#212)
12+
* Add support for merge request notes deletion (#227)
13+
* Properly handle extra args when listing with all=True (#233)
14+
* Implement pipeline creation API (#237)
15+
* Fix spent_time methods
16+
* Add 'delete source branch' option when creating MR (#241)
17+
* Provide API wrapper for cherry picking commits (#236)
18+
* Stop listing if recursion limit is hit (#234)
19+
420
Version 0.19_ - 2017-02-21
521
---------------------------
622

@@ -381,6 +397,7 @@ Version 0.1 - 2013-07-08
381397

382398
* Initial release
383399

400+
.. _0.20: https://github.com/gpocentek/python-gitlab/compare/0.19...0.20
384401
.. _0.19: https://github.com/gpocentek/python-gitlab/compare/0.18...0.19
385402
.. _0.18: https://github.com/gpocentek/python-gitlab/compare/0.17...0.18
386403
.. _0.17: https://github.com/gpocentek/python-gitlab/compare/0.16...0.17

gitlab/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from gitlab.objects import * # noqa
3535

3636
__title__ = 'python-gitlab'
37-
__version__ = '0.19'
37+
__version__ = '0.20'
3838
__author__ = 'Gauvain Pocentek'
3939
__email__ = 'gauvain@pocentek.net'
4040
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)