Skip to content

Commit cd69624

Browse files
author
Gauvain Pocentek
committed
0.19 release
1 parent a273a17 commit cd69624

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ Contributors
88
------------
99

1010
Adam Reid <areid@navtech.aero>
11+
Alex Widener <alexwidener@users.noreply.github.com>
1112
Amar Sood (tekacs) <mail@tekacs.com>
13+
Andjelko Horvat <ahorvat@reflected.net>
14+
Andreas Nüßlein <nutz@noova.de>
1215
Andrew Austin <aaustin@terremark.com>
1316
Armin Weihbold <armin.weihbold@gmail.com>
1417
Asher256 <Asher256@users.noreply.github.com>
@@ -28,6 +31,7 @@ hakkeroid <hakkeroid@users.noreply.github.com>
2831
itxaka <itxakaserrano@gmail.com>
2932
Ivica Arsov <ivica.arsov@sculpteo.com>
3033
James (d0c_s4vage) Johnson <james.johnson@exodusintel.com>
34+
James Johnson <d0c.s4vage@gmail.com>
3135
Jason Antman <jason@jasonantman.com>
3236
Jonathon Reinhart <Jonathon.Reinhart@gmail.com>
3337
Koen Smets <koen.smets@gmail.com>

ChangeLog

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Version 0.19
2+
3+
* Update project.archive() docs
4+
* Support the scope attribute in runners.list()
5+
* Add support for project runners
6+
* Add support for commit creation
7+
* Fix install doc
8+
* Add builds-email and pipelines-email services
9+
* Deploy keys: rework enable/disable
10+
* Document the dynamic aspect of objects
11+
* Add pipeline_events to ProjectHook attrs
12+
* Add due_date attribute to ProjectIssue
13+
* Handle settings.domain_whitelist, partly
14+
* {Project,Group}Member: support expires_at attribute
15+
116
Version 0.18
217

318
* Fix JIRA service editing for GitLab 8.14+

gitlab/__init__.py

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

3636
__title__ = 'python-gitlab'
37-
__version__ = '0.18'
37+
__version__ = '0.19'
3838
__author__ = 'Gauvain Pocentek'
3939
__email__ = 'gauvain@pocentek.net'
4040
__license__ = 'LGPL3'
41-
__copyright__ = 'Copyright 2013-2016 Gauvain Pocentek'
41+
__copyright__ = 'Copyright 2013-2017 Gauvain Pocentek'
4242

4343
warnings.filterwarnings('default', category=DeprecationWarning,
4444
module='^gitlab')

0 commit comments

Comments
 (0)