Skip to content

Commit cd9194b

Browse files
author
Gauvain Pocentek
committed
Prepare the 0.21 release
1 parent ba41e5e commit cd9194b

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ Dmytro Litvinov <litvinov.do.it@gmail.com>
2828
Erik Weatherwax <erik.weatherwax@xls.xerox.com>
2929
fgouteroux <francois.gouteroux@d2-si.eu>
3030
Greg Allen <GregoryEAllen@users.noreply.github.com>
31+
Guillaume Delacour <gui@iroqwa.org>
3132
Guyzmo <guyzmo+github@m0g.net>
3233
hakkeroid <hakkeroid@users.noreply.github.com>
34+
Ian Sparks <isparks@mdsol.com>
3335
itxaka <itxakaserrano@gmail.com>
3436
Ivica Arsov <ivica.arsov@sculpteo.com>
3537
James (d0c_s4vage) Johnson <james.johnson@exodusintel.com>
38+
James E. Flemer <james.flemer@ndpgroup.com>
3639
James Johnson <d0c.s4vage@gmail.com>
3740
Jason Antman <jason@jasonantman.com>
3841
Johan Brandhorst <johan@cognitivelogic.com>
@@ -41,6 +44,7 @@ Koen Smets <koen.smets@gmail.com>
4144
Kris Gambirazzi <Kris@sitehost.co.nz>
4245
Mart Sõmermaa <mart.somermaa@cgi.com>
4346
massimone88 <stefano.mandruzzato@gmail.com>
47+
Matej Zerovnik <matej@zunaj.si>
4448
Matt Odden <locke105@gmail.com>
4549
Michal Galet <michal.galet@gmail.com>
4650
Mikhail Lopotkov <ms.lopotkov@tensor.ru>
@@ -59,4 +63,6 @@ savenger <github@smahmood.de>
5963
Stefan K. Dunkler <stefan.dun@gmail.com>
6064
Stefan Klug <klug.stefan@gmx.de>
6165
Stefano Mandruzzato <stefano.mandruzzato@gmail.com>
66+
Tim Neumann <mail@timnn.me>
6267
Will Starms <vilhelmen@gmail.com>
68+
Yosi Zelensky <yosyos04@gmail.com>

ChangeLog.rst

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

4+
Version 0.21_ - 2017-05-24
5+
--------------------------
6+
7+
* Add time_stats to ProjectMergeRequest
8+
* Update User options for creation and update (#246)
9+
* Add milestone.merge_requests() API
10+
* Fix docs typo (s/correspnding/corresponding/)
11+
* Support milestone start date (#251)
12+
* Add support for priority attribute in labels (#256)
13+
* Add support for nested groups (#257)
14+
* Make GroupProjectManager a subclass of ProjectManager (#255)
15+
* Available services: return a list instead of JSON (#258)
16+
* MR: add support for time tracking features (#248)
17+
* Fixed repository_tree and repository_blob path encoding (#265)
18+
* Add 'search' attribute to projects.list()
19+
* Initial gitlab API v4 support
20+
* Reorganise the code to handle v3 and v4 objects
21+
* Allow 202 as delete return code
22+
* Deprecate parameter related methods in gitlab.Gitlab
23+
424
Version 0.20_ - 2017-03-25
525
---------------------------
626

@@ -397,6 +417,7 @@ Version 0.1 - 2013-07-08
397417

398418
* Initial release
399419

420+
.. _0.21: https://github.com/python-gitlab/python-gitlab/compare/0.20...0.21
400421
.. _0.20: https://github.com/python-gitlab/python-gitlab/compare/0.19...0.20
401422
.. _0.19: https://github.com/python-gitlab/python-gitlab/compare/0.18...0.19
402423
.. _0.18: https://github.com/python-gitlab/python-gitlab/compare/0.17...0.18

RELEASE_NOTES.rst

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ Changes from 0.20 to 0.21
3333
+ ``set_credentials()`` is deprecated, use the ``email`` and ``password``
3434
arguments of the ``Gitlab`` constructor.
3535

36+
* The service listing method (``ProjectServiceManager.list()``) now returns a
37+
python list instead of a JSON string.
38+
3639
Changes from 0.19 to 0.20
3740
=========================
3841

gitlab/__init__.py

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

3737
__title__ = 'python-gitlab'
38-
__version__ = '0.20'
38+
__version__ = '0.21'
3939
__author__ = 'Gauvain Pocentek'
4040
__email__ = 'gauvain@pocentek.net'
4141
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)