Thanks to visit codestin.com
Credit goes to github.com

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Contributors
88
------------
99

1010
Adam Reid <[email protected]>
11+
Alexander Skiba <[email protected]>
1112
Alex Widener <[email protected]>
1213
Amar Sood (tekacs) <[email protected]>
1314
Andjelko Horvat <[email protected]>
@@ -23,6 +24,7 @@ Crestez Dan Leonard <[email protected]>
2324
Daniel Kimsey <[email protected]>
2425
derek-austin <[email protected]>
2526
Diego Giovane Pasqualin <[email protected]>
27+
Dmytro Litvinov <[email protected]>
2628
Erik Weatherwax <[email protected]>
2729
fgouteroux <[email protected]>
2830
Greg Allen <[email protected]>
@@ -33,6 +35,7 @@ Ivica Arsov <[email protected]>
3335
James (d0c_s4vage) Johnson <[email protected]>
3436
James Johnson <[email protected]>
3537
Jason Antman <[email protected]>
38+
Johan Brandhorst <[email protected]>
3639
Jonathon Reinhart <[email protected]>
3740
Koen Smets <[email protected]>
3841
Kris Gambirazzi <[email protected]>
@@ -42,6 +45,7 @@ Matt Odden <[email protected]>
4245
Michal Galet <[email protected]>
4346
Mikhail Lopotkov <[email protected]>
4447
Missionrulz <[email protected]>
48+
4549
4650
Patrick Miller <[email protected]>
4751
Peng Xiao <[email protected]>
@@ -51,6 +55,7 @@ Philipp Busch <[email protected]>
5155
Rafael Eyng <[email protected]>
5256
Richard Hansen <[email protected]>
5357
58+
5459
Stefan K. Dunkler <[email protected]>
5560
Stefan Klug <[email protected]>
5661
Stefano Mandruzzato <[email protected]>

ChangeLog.rst

Lines changed: 17 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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__ = '[email protected]'
4040
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)